summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/rexml/attribute/inspect_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/rexml/attribute/inspect_spec.rb')
-rw-r--r--spec/rubyspec/library/rexml/attribute/inspect_spec.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/spec/rubyspec/library/rexml/attribute/inspect_spec.rb b/spec/rubyspec/library/rexml/attribute/inspect_spec.rb
new file mode 100644
index 0000000000..bfc764f663
--- /dev/null
+++ b/spec/rubyspec/library/rexml/attribute/inspect_spec.rb
@@ -0,0 +1,20 @@
+require File.expand_path('../../../../spec_helper', __FILE__)
+require 'rexml/document'
+
+describe "REXML::Attribute#inspect" do
+ it "returns the name and value as a string" do
+ a = REXML::Attribute.new("my_name", "my_value")
+ a.inspect.should == "my_name='my_value'"
+ end
+
+ it "accepts attributes with no value" do
+ a = REXML::Attribute.new("my_name")
+ a.inspect.should == "my_name=''"
+ end
+
+ it "does not escape text" do
+ a = REXML::Attribute.new("&&", "<>")
+ a.inspect.should == "&&='<>'"
+ end
+end
+