summaryrefslogtreecommitdiff
path: root/spec/ruby/core/struct/element_set_spec.rb
blob: 0a0e34a5eee1c26b09c3f91268865f073a44ae73 (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
require_relative '../../spec_helper'
require_relative 'fixtures/classes'

describe "Struct#[]=" do
  it "assigns the passed value" do
    car = StructClasses::Car.new('Ford', 'Ranger')

    car[:model] = 'Escape'
    car[:model].should == 'Escape'

    car['model'] = 'Fusion'
    car[:model].should == 'Fusion'

    car[1] = 'Excursion'
    car[:model].should == 'Excursion'

    car[-1] = '2000-2005'
    car[:year].should == '2000-2005'
  end

  it "fails when trying to assign attributes which don't exist" do
    car = StructClasses::Car.new('Ford', 'Ranger')

    -> { car[:something] = true }.should raise_error(NameError)
    -> { car[3] = true          }.should raise_error(IndexError)
    -> { car[-4] = true         }.should raise_error(IndexError)
    -> { car[Object.new] = true }.should raise_error(TypeError)
  end

  it "raises a FrozenError on a frozen struct" do
    car = StructClasses::Car.new('Ford', 'Ranger')
    car.freeze

    -> { car[:model] = 'Escape' }.should raise_error(FrozenError)
  end
end