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, 0 insertions, 20 deletions
diff --git a/spec/rubyspec/library/rexml/attribute/inspect_spec.rb b/spec/rubyspec/library/rexml/attribute/inspect_spec.rb
deleted file mode 100644
index bfc764f663..0000000000
--- a/spec/rubyspec/library/rexml/attribute/inspect_spec.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-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
-