Method: ActiveSupport::TestCase.test_order
- Defined in:
- lib/active_support/test_case.rb
.test_order ⇒ Object
Returns the order in which test cases are run.
ActiveSupport::TestCase.test_order # => :random
Possible values are :random, :parallel, :alpha, :sorted. Defaults to :random.
61 62 63 |
# File 'lib/active_support/test_case.rb', line 61 def test_order ActiveSupport.test_order ||= :random end |