Re: [rspec-users] Retrying specs

2012-05-08 Thread Samer Masry
Forgot to respond back. I was able to reset the factory girl sequence by calling FactoryGirl.reload in a before callback and ditched the retry which solved my problem. Thanks -S On May 8, 2012, at 10:00 PM, David Chelimsky wrote: > On Tue, May 8, 2012 at 12:55 PM, Samer Masry wrote: >> Is i

Re: [rspec-users] Retrying specs

2012-05-08 Thread David Chelimsky
On Tue, May 8, 2012 at 12:55 PM, Samer Masry wrote: > Is it possible to run an example without displaying it's > status ...F... The 'F' comes from the ProgressFormatter. You could write your own custom formatter. https://www.relishapp.com/rspec/rspec-core/docs/formatters/custom-formatters > I'm

[rspec-users] Retrying specs

2012-05-08 Thread Samer Masry
Is it possible to run an example without displaying it's status ...F... I'm currently using an around(:each) to run the spec and passing the example block into vcr however occasionally the cassette needs to be rerecorded. I'd like to delay recording it as an error until it has been retried. Is th