Class: TestQueue::TestFramework::Cucumber::FakeKernel
- Inherits:
-
Object
- Object
- TestQueue::TestFramework::Cucumber::FakeKernel
- Defined in:
- lib/test_queue/runner/cucumber.rb
Instance Method Summary collapse
Instance Method Details
#exit(n) ⇒ Object
77 78 79 80 81 82 83 84 |
# File 'lib/test_queue/runner/cucumber.rb', line 77 def exit(n) if $! # Let Cucumber exit for raised exceptions. Kernel.exit(n) end # Don't let Cucumber exit to indicate test failures. We want to # return the number of failures from #run_worker instead. end |