summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/text
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/text
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/text')
-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
5 files changed, 0 insertions, 5 deletions
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
-