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 that possible currently in rspec? -- DryBlis - www.dryblis.com Samer Masry | Rails Programmer 11 Ambler Ln, Emeryville, CA 94608 Tel.:510-991-7523 | Cel.: 714-814-8508
On Tue, May 8, 2012 at 12:55 PM, Samer Masry <samer.masry at gmail.com> 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 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 that possible currently in rspec?You could probably hack something together but rspec doesn''t support any notion of retry explicitly. Feel free to submit a feature request to https://github.com/rspec/rspec-core/issues and we can discuss it there. Cheers, David> > -- > DryBlis - www.dryblis.com > Samer Masry | Rails Programmer > 11 Ambler Ln, Emeryville, CA 94608 > Tel.:510-991-7523 | Cel.: 714-814-8508 > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users
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 <samer.masry at gmail.com> 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 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 that possible currently in rspec? > > You could probably hack something together but rspec doesn''t support > any notion of retry explicitly. Feel free to submit a feature request > to https://github.com/rspec/rspec-core/issues and we can discuss it > there. > > Cheers, > David > >> >> -- >> DryBlis - www.dryblis.com >> Samer Masry | Rails Programmer >> 11 Ambler Ln, Emeryville, CA 94608 >> Tel.:510-991-7523 | Cel.: 714-814-8508 >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users