aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/delegate/delegator/frozen_spec.rb
blob: 1fb561a349e8f5e2d25167de95275b547c325495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../../fixtures/classes', __FILE__)

describe "Delegator when frozen" do
  before :all do
    @array = [42, :hello]
    @delegate = DelegateSpecs::Delegator.new(@array)
    @delegate.freeze
  end

  it "is still readable" do
    @delegate.should == [42, :hello]
    @delegate.include?("bar").should be_false
  end

  it "is frozen" do
    @delegate.frozen?.should be_true
  end

  it "is not writeable" do
    lambda{ @delegate[0] += 2 }.should raise_error( RuntimeError )
  end

  it "creates a frozen clone" do
    @delegate.clone.frozen?.should be_true
  end

  it "creates an unfrozen dup" do
    @delegate.dup.frozen?.should be_false
  end

  it "causes mutative calls to raise RuntimeError" do
    lambda{ @delegate.__setobj__("hola!") }.should raise_error( RuntimeError )
  end

  it "returns false if only the delegated object is frozen" do
    DelegateSpecs::Delegator.new([1,2,3].freeze).frozen?.should be_false
  end
end