You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
It executed first test OK, then ignore the line_number setting for the second one (still using the first setting), return 'All examples were filtered out'.
Add 1 + 2
Run options: include {:line_numbers=>[4]}
.
Finished in 0.00046 seconds
1 example, 0 failures
Run options: include {:line_numbers=>[4]}
All examples were filtered out
Is there anywhere to make Core::Runner.run always start fresh? Thanks.
Here are two simple specs (add_spec.rb, minus_spec.rb):
describe"Minus"do# No tests on line 4it"can minus single digit"doputs"3 - 2"(3-2).should == 1endit"can minus double digit"doputs"22 - 11"(22-11).should == 11endend