Hi all, Part of the integration test suite involves running against a sandbox on Paypal''s server. Lately that server''s been acting flakely. It doesn''t fail all the time, but enough to confuse people. I made pending some tests that looked like they were repeat offenders, but now I''m seeing the same thing appear elsewhere. Is there any way to disable all the tests in a spec file at once? Will.
At the top of the file put... __END__ Zach On Fri, Mar 14, 2008 at 1:46 PM, Will Sargent <will.sargent at gmail.com> wrote:> Hi all, > > Part of the integration test suite involves running against a sandbox > on Paypal''s server. > > Lately that server''s been acting flakely. It doesn''t fail all the > time, but enough to confuse people. > > I made pending some tests that looked like they were repeat offenders, > but now I''m seeing the same thing appear elsewhere. Is there any way > to disable all the tests in a spec file at once? > > Will. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-- Zach Dennis http://www.continuousthinking.com
On Mar 14, 2008, at 1:46 PM, Will Sargent wrote:> Hi all, > > Part of the integration test suite involves running against a sandbox > on Paypal''s server. > > Lately that server''s been acting flakely. It doesn''t fail all the > time, but enough to confuse people. > > I made pending some tests that looked like they were repeat offenders, > but now I''m seeing the same thing appear elsewhere. Is there any way > to disable all the tests in a spec file at once?I like to use xit("Specs temporarily disable at: #{__FILE__}:# {__LINE__}") { ... } Scott