[rspec-users] fixture instantiated in before block?

2008-09-03 Thread Keith McDonnell
Hi all, Are fixtures not loaded instantiated in the before block? I thought they /should/ be :) eg before(:all) do [EMAIL PROTECTED], @matt, @it_industry].each { |v| puts v.inspect } end it should ... do [EMAIL PROTECTED], @matt, @it_industry].each { |v| puts v.inspect } end = nil nil

Re: [rspec-users] fixture instantiated in before block?

2008-09-03 Thread David Chelimsky
On Wed, Sep 3, 2008 at 4:52 AM, Keith McDonnell [EMAIL PROTECTED] wrote: Hi all, Are fixtures not loaded instantiated in the before block? I thought they /should/ be :) eg before(:all) do Try before(:each) instead. Read the warning at the bottom of