summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 12:30:05 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 12:30:05 +0000
commit9dc121cc577ae7a010bca7efedb79088e3cf7331 (patch)
treec11a153c7eac91a1e19ed058d5c28f0f7d583622 /spec/ruby/library/rexml
parentfc1f3f14d386b557281ff9a8f19da060befe182e (diff)
Update to ruby/spec@a454137
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63768 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library/rexml')
-rw-r--r--spec/ruby/library/rexml/attribute/inspect_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attribute/to_string_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attribute/value_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attribute/xpath_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attributes/each_attribute_spec.rb3
-rw-r--r--spec/ruby/library/rexml/attributes/each_spec.rb2
-rw-r--r--spec/ruby/library/rexml/attributes/element_reference_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attributes/element_set_spec.rb1
-rw-r--r--spec/ruby/library/rexml/attributes/to_a_spec.rb1
-rw-r--r--spec/ruby/library/rexml/element/add_namespace_spec.rb1
-rw-r--r--spec/ruby/library/rexml/element/document_spec.rb2
-rw-r--r--spec/ruby/library/rexml/node/parent_spec.rb1
-rw-r--r--spec/ruby/library/rexml/text/indent_text_spec.rb1
-rw-r--r--spec/ruby/library/rexml/text/new_spec.rb1
-rw-r--r--spec/ruby/library/rexml/text/read_with_substitution_spec.rb1
-rw-r--r--spec/ruby/library/rexml/text/to_s_spec.rb1
-rw-r--r--spec/ruby/library/rexml/text/wrap_spec.rb1
17 files changed, 0 insertions, 21 deletions
diff --git a/spec/ruby/library/rexml/attribute/inspect_spec.rb b/spec/ruby/library/rexml/attribute/inspect_spec.rb
index 9ab3757db8..86a437ec74 100644
--- a/spec/ruby/library/rexml/attribute/inspect_spec.rb
+++ b/spec/ruby/library/rexml/attribute/inspect_spec.rb
@@ -17,4 +17,3 @@ describe "REXML::Attribute#inspect" do
a.inspect.should == "&&='<>'"
end
end
-
diff --git a/spec/ruby/library/rexml/attribute/to_string_spec.rb b/spec/ruby/library/rexml/attribute/to_string_spec.rb
index eb93cf9969..420913afeb 100644
--- a/spec/ruby/library/rexml/attribute/to_string_spec.rb
+++ b/spec/ruby/library/rexml/attribute/to_string_spec.rb
@@ -12,4 +12,3 @@ describe "REXML::Attribute#to_string" do
attr_ns.to_string.should == "xmlns:ns='http://uri'"
end
end
-
diff --git a/spec/ruby/library/rexml/attribute/value_spec.rb b/spec/ruby/library/rexml/attribute/value_spec.rb
index 8c8c1a2a0d..7763976881 100644
--- a/spec/ruby/library/rexml/attribute/value_spec.rb
+++ b/spec/ruby/library/rexml/attribute/value_spec.rb
@@ -12,4 +12,3 @@ describe "REXML::Attribute#value" do
attr_empty.value.should == ""
end
end
-
diff --git a/spec/ruby/library/rexml/attribute/xpath_spec.rb b/spec/ruby/library/rexml/attribute/xpath_spec.rb
index 2cb44f7548..beefb036cc 100644
--- a/spec/ruby/library/rexml/attribute/xpath_spec.rb
+++ b/spec/ruby/library/rexml/attribute/xpath_spec.rb
@@ -17,4 +17,3 @@ describe "REXML::Attribute#xpath" do
lambda { @attr.xpath }.should raise_error(Exception)
end
end
-
diff --git a/spec/ruby/library/rexml/attributes/each_attribute_spec.rb b/spec/ruby/library/rexml/attributes/each_attribute_spec.rb
index c71e3c3971..e84c8dbf51 100644
--- a/spec/ruby/library/rexml/attributes/each_attribute_spec.rb
+++ b/spec/ruby/library/rexml/attributes/each_attribute_spec.rb
@@ -20,6 +20,3 @@ describe "REXML::Attributes#each_attribute" do
attributes.last.should == ns_uri
end
end
-
-
-
diff --git a/spec/ruby/library/rexml/attributes/each_spec.rb b/spec/ruby/library/rexml/attributes/each_spec.rb
index 49c02a3255..ed60634b90 100644
--- a/spec/ruby/library/rexml/attributes/each_spec.rb
+++ b/spec/ruby/library/rexml/attributes/each_spec.rb
@@ -21,5 +21,3 @@ describe "REXML::Attributes#each" do
attributes.last.should == ["xmlns:ns", "http://some_uri"]
end
end
-
-
diff --git a/spec/ruby/library/rexml/attributes/element_reference_spec.rb b/spec/ruby/library/rexml/attributes/element_reference_spec.rb
index a961935fad..dac7952669 100644
--- a/spec/ruby/library/rexml/attributes/element_reference_spec.rb
+++ b/spec/ruby/library/rexml/attributes/element_reference_spec.rb
@@ -16,4 +16,3 @@ describe "REXML::Attributes#[]" do
@e.attributes["chunky bacon"].should == nil
end
end
-
diff --git a/spec/ruby/library/rexml/attributes/element_set_spec.rb b/spec/ruby/library/rexml/attributes/element_set_spec.rb
index 0e19fda64f..1ed94dd2a1 100644
--- a/spec/ruby/library/rexml/attributes/element_set_spec.rb
+++ b/spec/ruby/library/rexml/attributes/element_set_spec.rb
@@ -23,4 +23,3 @@ describe "REXML::Attributes#[]=" do
@e.attributes.length.should == 0
end
end
-
diff --git a/spec/ruby/library/rexml/attributes/to_a_spec.rb b/spec/ruby/library/rexml/attributes/to_a_spec.rb
index 7fb2326dab..1fbf71b683 100644
--- a/spec/ruby/library/rexml/attributes/to_a_spec.rb
+++ b/spec/ruby/library/rexml/attributes/to_a_spec.rb
@@ -17,4 +17,3 @@ describe "REXML::Attributes#to_a" do
REXML::Element.new("root").attributes.to_a.should == []
end
end
-
diff --git a/spec/ruby/library/rexml/element/add_namespace_spec.rb b/spec/ruby/library/rexml/element/add_namespace_spec.rb
index 0aaf790de9..77c00eec46 100644
--- a/spec/ruby/library/rexml/element/add_namespace_spec.rb
+++ b/spec/ruby/library/rexml/element/add_namespace_spec.rb
@@ -21,4 +21,3 @@ describe "REXML::Element#add_namespace" do
@elem.namespace.should == "some_uri"
end
end
-
diff --git a/spec/ruby/library/rexml/element/document_spec.rb b/spec/ruby/library/rexml/element/document_spec.rb
index 16db64eeb7..24773580f2 100644
--- a/spec/ruby/library/rexml/element/document_spec.rb
+++ b/spec/ruby/library/rexml/element/document_spec.rb
@@ -14,5 +14,3 @@ describe "REXML::Element#document" do
REXML::Element.new("standalone").document.should be_nil
end
end
-
-
diff --git a/spec/ruby/library/rexml/node/parent_spec.rb b/spec/ruby/library/rexml/node/parent_spec.rb
index a2fe48390f..d88ba69657 100644
--- a/spec/ruby/library/rexml/node/parent_spec.rb
+++ b/spec/ruby/library/rexml/node/parent_spec.rb
@@ -18,4 +18,3 @@ describe "REXML::Node#parent?" do
e.parent?.should == false
end
end
-
diff --git a/spec/ruby/library/rexml/text/indent_text_spec.rb b/spec/ruby/library/rexml/text/indent_text_spec.rb
index af0954b7a2..1b0ee5ab16 100644
--- a/spec/ruby/library/rexml/text/indent_text_spec.rb
+++ b/spec/ruby/library/rexml/text/indent_text_spec.rb
@@ -21,4 +21,3 @@ describe "REXML::Text#indent_text" do
@t.indent_text("foo", 1, "\t", false).should == "foo"
end
end
-
diff --git a/spec/ruby/library/rexml/text/new_spec.rb b/spec/ruby/library/rexml/text/new_spec.rb
index c069559a19..a1fdcddf28 100644
--- a/spec/ruby/library/rexml/text/new_spec.rb
+++ b/spec/ruby/library/rexml/text/new_spec.rb
@@ -46,4 +46,3 @@ describe "REXML::Text.new" do
t.should == "&lt;&amp;&gt;"
end
end
-
diff --git a/spec/ruby/library/rexml/text/read_with_substitution_spec.rb b/spec/ruby/library/rexml/text/read_with_substitution_spec.rb
index c84778d8c4..a9b4d30bc5 100644
--- a/spec/ruby/library/rexml/text/read_with_substitution_spec.rb
+++ b/spec/ruby/library/rexml/text/read_with_substitution_spec.rb
@@ -10,4 +10,3 @@ describe "REXML::Text.read_with_substitution" do
lambda {REXML::Text.read_with_substitution("this is illegal", /illegal/)}.should raise_error(Exception)
end
end
-
diff --git a/spec/ruby/library/rexml/text/to_s_spec.rb b/spec/ruby/library/rexml/text/to_s_spec.rb
index 2ee9dd0ec7..14d7399a60 100644
--- a/spec/ruby/library/rexml/text/to_s_spec.rb
+++ b/spec/ruby/library/rexml/text/to_s_spec.rb
@@ -15,4 +15,3 @@ describe "REXML::Text#to_s" do
t.to_s.should == "&amp; &lt; &gt;"
end
end
-
diff --git a/spec/ruby/library/rexml/text/wrap_spec.rb b/spec/ruby/library/rexml/text/wrap_spec.rb
index d958561634..0b60fd4151 100644
--- a/spec/ruby/library/rexml/text/wrap_spec.rb
+++ b/spec/ruby/library/rexml/text/wrap_spec.rb
@@ -18,4 +18,3 @@ describe "REXML::Text#wrap" do
@t.wrap("abc def", 3, true).should == "\nabc\ndef"
end
end
-