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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
describe "Kernel#instance_variable_set" do
it "sets the value of the specified instance variable" do
class Dog
def initialize(p1, p2)
@a, @b = p1, p2
end
end
Dog.new('cat', 99).instance_variable_set(:@a, 'dog').should == "dog"
end
it "sets the value of the instance variable when no instance variables exist yet" do
class NoVariables; end
NoVariables.new.instance_variable_set(:@a, "new").should == "new"
end
it "raises a NameError exception if the argument is not of form '@x'" do
class NoDog; end
lambda { NoDog.new.instance_variable_set(:c, "cat") }.should raise_error(NameError)
end
it "sets the value of the instance variable if argument is '@'" do
class DogAt; end
DogAt.new.instance_variable_set(:'@', "cat").should == "cat"
end
ruby_version_is ""..."1.9" do
it "raises an ArgumentError if the instance variable name is a Fixnum" do
lambda { "".instance_variable_set(1, 2) }.should raise_error(ArgumentError)
end
end
ruby_version_is "1.9" do
it "raises a TypeError if the instance variable name is a Fixnum" do
lambda { "".instance_variable_set(1, 2) }.should raise_error(TypeError)
end
end
it "raises a TypeError if the instance variable name is an object that does not respond to to_str" do
class KernelSpecs::A; end
lambda { "".instance_variable_set(KernelSpecs::A.new, 3) }.should raise_error(TypeError)
end
it "raises a NameError if the passed object, when coerced with to_str, does not start with @" do
class KernelSpecs::B
def to_str
":c"
end
end
lambda { "".instance_variable_set(KernelSpecs::B.new, 4) }.should raise_error(NameError)
end
it "raises a NameError if pass an object that cannot be a symbol" do
lambda { "".instance_variable_set(:c, 1) }.should raise_error(NameError)
end
it "accepts as instance variable name any instance of a class that responds to to_str" do
class KernelSpecs::C
def initialize
@a = 1
end
def to_str
"@a"
end
end
KernelSpecs::C.new.instance_variable_set(KernelSpecs::C.new, 2).should == 2
end
describe "on frozen objects" do
before(:each) do
klass = Class.new do
attr_reader :ivar
def initialize
@ivar = :origin
end
end
@frozen = klass.new.freeze
end
it "keeps stored object after any exceptions" do
lambda { @frozen.instance_variable_set(:@ivar, :replacement) }.should raise_error(Exception)
@frozen.ivar.should equal(:origin)
end
ruby_version_is ""..."1.9" do
it "raises a TypeError when passed replacement is identical to the stored object" do
lambda { @frozen.instance_variable_set(:@ivar, :origin) }.should raise_error(TypeError)
end
it "raises a TypeError when passed replacement is different from stored object" do
lambda { @frozen.instance_variable_set(:@ivar, :replacement) }.should raise_error(TypeError)
end
end
ruby_version_is "1.9" do
it "raises a RuntimeError when passed replacement is identical to stored object" do
lambda { @frozen.instance_variable_set(:@ivar, :origin) }.should raise_error(RuntimeError)
end
it "raises a RuntimeError when passed replacement is different from stored object" do
lambda { @frozen.instance_variable_set(:@ivar, :replacement) }.should raise_error(RuntimeError)
end
end
end
end
|