Run tests in a random order

This commit is contained in:
Elliot Winkler 2014-11-06 14:16:30 -07:00
parent df6c0ef56e
commit 1a5bbfa34c
2 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,8 @@ Dir[ File.join(File.expand_path('../support/acceptance/**/*.rb', __FILE__)) ].so
end
RSpec.configure do |config|
config.order = :random
config.expect_with :rspec do |c|
c.syntax = :expect
end

View File

@ -34,6 +34,8 @@ Dir[ File.join(File.expand_path('../support/unit/**/*.rb', __FILE__)) ].sort.eac
end
RSpec.configure do |config|
config.order = :random
config.expect_with :rspec do |c|
c.syntax = :expect
end