summaryrefslogtreecommitdiff
path: root/spec/ruby/core/string/gsub_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <eregontp@gmail.com>2020-05-03 12:28:29 +0200
committerBenoit Daloze <eregontp@gmail.com>2020-05-03 12:28:29 +0200
commit5aaa75e7c1f4b7912c10ffdcb1cac581e20eda39 (patch)
treee1694f5a4a5558884b1b8f3890b186793e5e982f /spec/ruby/core/string/gsub_spec.rb
parentf646d20aaeb8f02bcd3d0c5c3f5a372da654502a (diff)
Update to ruby/spec@032ee74
Diffstat (limited to 'spec/ruby/core/string/gsub_spec.rb')
-rw-r--r--spec/ruby/core/string/gsub_spec.rb52
1 files changed, 26 insertions, 26 deletions
diff --git a/spec/ruby/core/string/gsub_spec.rb b/spec/ruby/core/string/gsub_spec.rb
index 8193464d48..23e0ad2260 100644
--- a/spec/ruby/core/string/gsub_spec.rb
+++ b/spec/ruby/core/string/gsub_spec.rb
@@ -171,14 +171,14 @@ describe "String#gsub with pattern and replacement" do
hello_t.taint; a_t.taint; empty_t.taint
- hello_t.gsub(/./, a).tainted?.should == true
- hello_t.gsub(/./, empty).tainted?.should == true
+ hello_t.gsub(/./, a).should.tainted?
+ hello_t.gsub(/./, empty).should.tainted?
- hello.gsub(/./, a_t).tainted?.should == true
- hello.gsub(/./, empty_t).tainted?.should == true
- hello.gsub(//, empty_t).tainted?.should == true
+ hello.gsub(/./, a_t).should.tainted?
+ hello.gsub(/./, empty_t).should.tainted?
+ hello.gsub(//, empty_t).should.tainted?
- hello.gsub(//.taint, "foo").tainted?.should == false
+ hello.gsub(//.taint, "foo").should_not.tainted?
end
end
@@ -199,14 +199,14 @@ describe "String#gsub with pattern and replacement" do
hello_t.untrust; a_t.untrust; empty_t.untrust
- hello_t.gsub(/./, a).untrusted?.should == true
- hello_t.gsub(/./, empty).untrusted?.should == true
+ hello_t.gsub(/./, a).should.untrusted?
+ hello_t.gsub(/./, empty).should.untrusted?
- hello.gsub(/./, a_t).untrusted?.should == true
- hello.gsub(/./, empty_t).untrusted?.should == true
- hello.gsub(//, empty_t).untrusted?.should == true
+ hello.gsub(/./, a_t).should.untrusted?
+ hello.gsub(/./, empty_t).should.untrusted?
+ hello.gsub(//, empty_t).should.untrusted?
- hello.gsub(//.untrust, "foo").untrusted?.should == false
+ hello.gsub(//.untrust, "foo").should_not.untrusted?
end
end
@@ -521,14 +521,14 @@ describe "String#gsub with pattern and block" do
hello_t.untrust; a_t.untrust; empty_t.untrust
- hello_t.gsub(/./) { a }.untrusted?.should == true
- hello_t.gsub(/./) { empty }.untrusted?.should == true
+ hello_t.gsub(/./) { a }.should.untrusted?
+ hello_t.gsub(/./) { empty }.should.untrusted?
- hello.gsub(/./) { a_t }.untrusted?.should == true
- hello.gsub(/./) { empty_t }.untrusted?.should == true
- hello.gsub(//) { empty_t }.untrusted?.should == true
+ hello.gsub(/./) { a_t }.should.untrusted?
+ hello.gsub(/./) { empty_t }.should.untrusted?
+ hello.gsub(//) { empty_t }.should.untrusted?
- hello.gsub(//.untrust) { "foo" }.untrusted?.should == false
+ hello.gsub(//.untrust) { "foo" }.should_not.untrusted?
end
end
@@ -594,14 +594,14 @@ describe "String#gsub! with pattern and replacement" do
ruby_version_is ''...'2.7' do
it "taints self if replacement is tainted" do
a = "hello"
- a.gsub!(/./.taint, "foo").tainted?.should == false
- a.gsub!(/./, "foo".taint).tainted?.should == true
+ a.gsub!(/./.taint, "foo").should_not.tainted?
+ a.gsub!(/./, "foo".taint).should.tainted?
end
it "untrusts self if replacement is untrusted" do
a = "hello"
- a.gsub!(/./.untrust, "foo").untrusted?.should == false
- a.gsub!(/./, "foo".untrust).untrusted?.should == true
+ a.gsub!(/./.untrust, "foo").should_not.untrusted?
+ a.gsub!(/./, "foo".untrust).should.untrusted?
end
end
@@ -633,14 +633,14 @@ describe "String#gsub! with pattern and block" do
ruby_version_is ''...'2.7' do
it "taints self if block's result is tainted" do
a = "hello"
- a.gsub!(/./.taint) { "foo" }.tainted?.should == false
- a.gsub!(/./) { "foo".taint }.tainted?.should == true
+ a.gsub!(/./.taint) { "foo" }.should_not.tainted?
+ a.gsub!(/./) { "foo".taint }.should.tainted?
end
it "untrusts self if block's result is untrusted" do
a = "hello"
- a.gsub!(/./.untrust) { "foo" }.untrusted?.should == false
- a.gsub!(/./) { "foo".untrust }.untrusted?.should == true
+ a.gsub!(/./.untrust) { "foo" }.should_not.untrusted?
+ a.gsub!(/./) { "foo".untrust }.should.untrusted?
end
end