Let's say I have 2 tests:
describe "Data Processor" do it "should parse simple sample data correctly" do ... end it "should parse complex sample data correctly" do ... end end
Is there a way to use Rspec so that the second test Rspec on the first? The reason I ask is because I use Watchr , and the second test takes a little longer. If the first test fails, the second most likely will fail. They are not really dependent on each other, but it is a waste of time to run the second test if the first fails.
I can skip the test with Ctrl C in Watchr , but I'm wondering if there is a better way. Could not find anything through Google.
source share