Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to RSpec 3.3 in suspenders apps
RSpec 3.3 added some very handy commands for filtering examples. With the addition of the status persistence file configuration we can now: * run `rspec --only-failures` to re-run only the examples that failed. * run `rspec --next-failure` to re-run only the first failing test from your previous run. If that passes it will run the successive failures until one of them fails again Additionally, rspec 3.3 includes stable random ordering (even when you add new examples), the ability to bisect failures when debugging ordering-dependent failures, better failure output... http://rspec.info/blog/2015/06/rspec-3-3-has-been-released/
- Loading branch information