summaryrefslogtreecommitdiff
path: root/spec/ruby/library/rexml/text
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2020-05-03 12:28:29 +0200
committerBenoit Daloze <[email protected]>2020-05-03 12:28:29 +0200
commit5aaa75e7c1f4b7912c10ffdcb1cac581e20eda39 (patch)
treee1694f5a4a5558884b1b8f3890b186793e5e982f /spec/ruby/library/rexml/text
parentf646d20aaeb8f02bcd3d0c5c3f5a372da654502a (diff)
Update to ruby/spec@032ee74
Diffstat (limited to 'spec/ruby/library/rexml/text')
-rw-r--r--spec/ruby/library/rexml/text/empty_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/library/rexml/text/empty_spec.rb b/spec/ruby/library/rexml/text/empty_spec.rb
index 392b536a4c..18f31580ad 100644
--- a/spec/ruby/library/rexml/text/empty_spec.rb
+++ b/spec/ruby/library/rexml/text/empty_spec.rb
@@ -5,11 +5,11 @@ ruby_version_is ''...'2.8' do
describe "REXML::Text#empty?" do
it "returns true if the text is empty" do
- REXML::Text.new("").empty?.should == true
+ REXML::Text.new("").should.empty?
end
it "returns false if the text is not empty" do
- REXML::Text.new("some_text").empty?.should == false
+ REXML::Text.new("some_text").should_not.empty?
end
end
end