diff options
author | Matthew Landauer <matthew@openaustralia.org> | 2013-03-19 06:15:07 +1100 |
---|---|---|
committer | Matthew Landauer <matthew@openaustralia.org> | 2013-03-19 06:15:07 +1100 |
commit | 6150d2cf942e72b4e33de49c25c1c190a90ec391 (patch) | |
tree | b0d17107b67cbf3c501e8d6debc02071a5931474 | |
parent | 905c9495a9005d71488e1737ebc28f697b8a9f2e (diff) |
Now randomise the test order by default to help uncover order dependent issues
-rw-r--r-- | spec/spec_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index c75e73493..c1b2d094c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -63,7 +63,7 @@ Spork.prefork do # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 - #config.order = "random" + config.order = "random" # This is a workaround for a strange thing where ActionMailer::Base.deliveries isn't being # cleared out correctly in controller specs. So, do it here for everything. |