Re: [rspec-users] Any way to continue on Assertion Failure

2009-06-01 Thread Pat Maddox
Let's say I've got this spec: describe Team, "add_player" do it "should add a player to the team" do team = Team.new player = Player.new :name => "Pat" team.add_player player team.should have(1).players team.players.first.name.should == "Pat" end end and for some reason te

Re: [rspec-users] Any way to continue on Assertion Failure

2009-05-30 Thread Zach Dennis
On Wed, May 27, 2009 at 4:07 AM, Matt Wynne wrote: > > On 27 May 2009, at 03:38, Julian Leviston wrote: > >> On 27/05/2009, at 9:33 AM, Gary Lin wrote: >> >>> Hi, >>> >>> I wonder if there is any way to tell the test script to continue even >>> when encountering an assertion failure?  The reason I

Re: [rspec-users] Any way to continue on Assertion Failure

2009-05-27 Thread Matt Wynne
On 27 May 2009, at 03:38, Julian Leviston wrote: On 27/05/2009, at 9:33 AM, Gary Lin wrote: Hi, I wonder if there is any way to tell the test script to continue even when encountering an assertion failure? The reason I am asking this is because I have a test flow that can take a long ti

Re: [rspec-users] Any way to continue on Assertion Failure

2009-05-26 Thread Julian Leviston
On 27/05/2009, at 9:33 AM, Gary Lin wrote: Hi, I wonder if there is any way to tell the test script to continue even when encountering an assertion failure? The reason I am asking this is because I have a test flow that can take a long time to run and it would be very useful if I can per

Re: [rspec-users] Any way to continue on Assertion Failure

2009-05-26 Thread David Chelimsky
On Tue, May 26, 2009 at 7:58 PM, David Chelimsky wrote: > On Tue, May 26, 2009 at 7:33 PM, Gary Lin wrote: >> Hi, >> >> I wonder if there is any way to tell the test script to continue even when >> encountering an assertion failure?  The reason I am asking this is because I >> have a test flow th

Re: [rspec-users] Any way to continue on Assertion Failure

2009-05-26 Thread David Chelimsky
On Tue, May 26, 2009 at 7:33 PM, Gary Lin wrote: > Hi, > > I wonder if there is any way to tell the test script to continue even when > encountering an assertion failure?  The reason I am asking this is because I > have a test flow that can take a long time to run and it would be very > useful if

[rspec-users] Any way to continue on Assertion Failure

2009-05-26 Thread Gary Lin
Hi, I wonder if there is any way to tell the test script to continue even when encountering an assertion failure? The reason I am asking this is because I have a test flow that can take a long time to run and it would be very useful if I can perform all verification at the end of test flow i