Displaying 1 result from an estimated 1 matches for "filter_run_exclud".
2011 Nov 06
0
rspec-2.8.0.rc1 is released
http://blog.davidchelimsky.net/2011/11/06/rspec-280rc1-is-released/
See the blog post for more information, but highlights include:
1. tag overrides
Now you can set tag/filter defaults in .rspec:
--tag ~javascript
or in RSpec.configure (in spec_helper.rb):
RSpec.configure {|c| c.filter_run_excluding :javascript}
and then override that from the command line when you want to run the javascript specs:
rspec --tag javascript
2. --order rand
Courtesy of Justin Ko, this addition allows you to run examples in random order. To make that your default, we recommend putting this in .rspec:
--...