diff options
Diffstat (limited to 'spec/rubyspec/library/rexml/attribute/prefix_spec.rb')
-rw-r--r-- | spec/rubyspec/library/rexml/attribute/prefix_spec.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/rubyspec/library/rexml/attribute/prefix_spec.rb b/spec/rubyspec/library/rexml/attribute/prefix_spec.rb new file mode 100644 index 0000000000..698c8d5d7b --- /dev/null +++ b/spec/rubyspec/library/rexml/attribute/prefix_spec.rb @@ -0,0 +1,18 @@ +require File.expand_path('../../../../spec_helper', __FILE__) +require 'rexml/document' + +describe "REXML::Attribute#prefix" do + it "returns the namespace of the Attribute" do + ans = REXML::Attribute.new("ns:someattr", "some_value") + out = REXML::Attribute.new("out:something", "some_other_value") + + ans.prefix.should == "ns" + out.prefix.should == "out" + end + + it "returns an empty string for Attributes with no prefixes" do + attr = REXML::Attribute.new("foo", "bar") + + attr.prefix.should == "" + end +end |