mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Update to ruby/spec@032ee74
This commit is contained in:
parent
f646d20aae
commit
5aaa75e7c1
263 changed files with 921 additions and 921 deletions
|
@ -5,16 +5,16 @@ require_relative 'fixtures/classes'
|
|||
describe "String#undump" do
|
||||
ruby_version_is ''...'2.7' do
|
||||
it "taints the result if self is tainted" do
|
||||
'"foo"'.taint.undump.tainted?.should == true
|
||||
'"foo"'.taint.undump.should.tainted?
|
||||
end
|
||||
|
||||
it "untrusts the result if self is untrusted" do
|
||||
'"foo"'.untrust.undump.untrusted?.should == true
|
||||
'"foo"'.untrust.undump.should.untrusted?
|
||||
end
|
||||
end
|
||||
|
||||
it "does not take into account if a string is frozen" do
|
||||
'"foo"'.freeze.undump.frozen?.should == false
|
||||
'"foo"'.freeze.undump.should_not.frozen?
|
||||
end
|
||||
|
||||
it "always returns String instance" do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue