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
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
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
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
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
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
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