Instance variables from outer before blocks don't persist?

Hmmm… I am used to doing this with Test::Unit & Shoulda…

setup do
@foo = Bar.new
end

context “something”

setup do
@foo.blah = 123
end

should “make me say lol” do
# …etc
end

end

… But I just tried doing this in RSpec with before :each, and it
seems that
my @foo ivar is non existant inside the inner context… Is this the
way
it’s supposed to be?

Patrick J. Collins
http://collinatorstudios.com

On Oct 12, 2011, at 4:59 PM, Patrick J. Collins wrote:

… But I just tried doing this in RSpec with before :each, and it seems that
my @foo ivar is non existant inside the inner context… Is this the way
it’s supposed to be?

post the whole example

… But I just tried doing this in RSpec with before :each, and it seems that
my @foo ivar is non existant inside the inner context… Is this the way
it’s supposed to be?

post the whole example

Nevermind… I figured out what I was doing wrong.

Patrick J. Collins
http://collinatorstudios.com