RSpec.configure do |c|Now you tag the slow tests:
c.filter_run_excluding :slow => true
end
describe "add a user", slow: :true doNext time you run "rspec spec" the slow tests will not run
No DRb server is running. Running in local process instead ...
Run options: exclude {:slow=>true}
...............................................
If you want to run the slow tests, use a flag:
rspec spec --tag slowand now they run
No DRb server is running. Running in local process instead ...
Run options: include {:slow=>true}
...................