Patrick J. Collins
2011-Oct-12 23:59 UTC
[rspec-users] 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
Pat Maddox
2011-Oct-13 01:50 UTC
[rspec-users] instance variables from outer before blocks don''t persist?
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
Patrick J. Collins
2011-Oct-14 00:47 UTC
[rspec-users] instance variables from outer before blocks don''t persist?
> > ... 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 exampleNevermind.. I figured out what I was doing wrong. Patrick J. Collins http://collinatorstudios.com