summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/rexml/attribute/value_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/rexml/attribute/value_spec.rb')
-rw-r--r--spec/rubyspec/library/rexml/attribute/value_spec.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/spec/rubyspec/library/rexml/attribute/value_spec.rb b/spec/rubyspec/library/rexml/attribute/value_spec.rb
deleted file mode 100644
index 912509cd75..0000000000
--- a/spec/rubyspec/library/rexml/attribute/value_spec.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require File.expand_path('../../../../spec_helper', __FILE__)
-require 'rexml/document'
-
-describe "REXML::Attribute#value" do
- it "returns the value of the Attribute unnormalized" do
- attr = REXML::Attribute.new("name", "value")
- attr_ents = REXML::Attribute.new("name", "<&>")
- attr_empty = REXML::Attribute.new("name")
-
- attr.value.should == "value"
- attr_ents.value.should == "<&>"
- attr_empty.value.should == ""
- end
-end
-