Re: [rspec-users] RSpec2: How to avoid an example run when previous failed

2010-12-12 Thread Gennady Bystritsky
On Dec 11, 2010, at 5:14 AM, Matt Wynne wrote: > > On 10 Dec 2010, at 20:25, Gennady Bystritsky wrote: > >> Is there a way not to execute an example when another one fails? I want to >> minimize failure noises in cases when, say, one spec checks that an array >> has an expected number of elem

Re: [rspec-users] RSpec2: How to avoid an example run when previous failed

2010-12-11 Thread Matt Wynne
On 10 Dec 2010, at 20:25, Gennady Bystritsky wrote: > Is there a way not to execute an example when another one fails? I want to > minimize failure noises in cases when, say, one spec checks that an array has > an expected number of elements while the others drill down on a specific > element.

[rspec-users] RSpec2: How to avoid an example run when previous failed

2010-12-10 Thread Gennady Bystritsky
Is there a way not to execute an example when another one fails? I want to minimize failure noises in cases when, say, one spec checks that an array has an expected number of elements while the others drill down on a specific element. However, when there's a wrong number of elements in the first