mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use FrozenError instead of frozen_error_class
This commit is contained in:
parent
151f8be40d
commit
3a2073e61b
Notes:
git
2020-04-01 15:36:48 +09:00
103 changed files with 367 additions and 385 deletions
|
@ -32,13 +32,13 @@ describe "Array#concat" do
|
|||
[].concat(obj).should == [5, 6, 7]
|
||||
end
|
||||
|
||||
it "raises a #{frozen_error_class} when Array is frozen and modification occurs" do
|
||||
-> { ArraySpecs.frozen_array.concat [1] }.should raise_error(frozen_error_class)
|
||||
it "raises a FrozenError when Array is frozen and modification occurs" do
|
||||
-> { ArraySpecs.frozen_array.concat [1] }.should raise_error(FrozenError)
|
||||
end
|
||||
|
||||
# see [ruby-core:23666]
|
||||
it "raises a #{frozen_error_class} when Array is frozen and no modification occurs" do
|
||||
-> { ArraySpecs.frozen_array.concat([]) }.should raise_error(frozen_error_class)
|
||||
it "raises a FrozenError when Array is frozen and no modification occurs" do
|
||||
-> { ArraySpecs.frozen_array.concat([]) }.should raise_error(FrozenError)
|
||||
end
|
||||
|
||||
ruby_version_is ''...'2.7' do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue