1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/rubyspec/core/kernel/freeze_spec.rb
eregon 95e8c48dd3 Add in-tree mspec and ruby/spec
* For easier modifications of ruby/spec by MRI developers.
* .gitignore: track changes under spec.
* spec/mspec, spec/rubyspec: add in-tree mspec and ruby/spec.
  These files can therefore be updated like any other file in MRI.
  Instructions are provided in spec/README.
  [Feature #13156] [ruby-core:79246]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-05-07 12:04:49 +00:00

67 lines
1.5 KiB
Ruby

require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "Kernel#freeze" do
it "prevents self from being further modified" do
o = mock('o')
o.frozen?.should be_false
o.freeze
o.frozen?.should be_true
end
it "returns self" do
o = Object.new
o.freeze.should equal(o)
end
describe "on integers" do
it "has no effect since they are already frozen" do
1.frozen?.should be_true
1.freeze
bignum = bignum_value
bignum.frozen?.should be_true
bignum.freeze
end
end
describe "on a Float" do
it "has no effect since it is already frozen" do
1.2.frozen?.should be_true
1.2.freeze
end
end
describe "on a Symbol" do
it "has no effect since it is already frozen" do
:sym.frozen?.should be_true
:sym.freeze
end
end
describe "on true, false and nil" do
it "has no effect since they are already frozen" do
nil.frozen?.should be_true
true.frozen?.should be_true
false.frozen?.should be_true
nil.freeze
true.freeze
false.freeze
end
end
it "causes mutative calls to raise RuntimeError" do
o = Class.new do
def mutate; @foo = 1; end
end.new
o.freeze
lambda {o.mutate}.should raise_error(RuntimeError)
end
it "causes instance_variable_set to raise RuntimeError" do
o = Object.new
o.freeze
lambda {o.instance_variable_set(:@foo, 1)}.should raise_error(RuntimeError)
end
end