Re: [rspec-users] factory girl rspec and authlogic

2009-10-03 Thread Stephen Eley
On Sat, Oct 3, 2009 at 8:41 PM, Don French wrote: > I am trying some simple test using the above items. Using the > Factory.create(...) gives Active Record errors and not the failure of > the test. Change it to u = Factory.build(...) then u.save, I do not > get the Active record error but the prop

[rspec-users] factory girl rspec and authlogic

2009-10-03 Thread Don French
I am trying some simple test using the above items. Using the Factory.create(...) gives Active Record errors and not the failure of the test. Change it to u = Factory.build(...) then u.save, I do not get the Active record error but the proper test failure message. it 'requires email' do lamb