aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/test_case.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-18 17:23:27 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-18 17:23:27 -0200
commitd6ed7b8496dc385e0cf706f4dfb4c533cf34f19e (patch)
tree110aaa5e95796336bbf8b73b0a257705e1f9c635 /activesupport/lib/active_support/test_case.rb
parent6d6f70301209d2942288f60abb7d203e89e8d9b6 (diff)
parent1d19a3a42a019f592e4bc7590cc24e179de1613c (diff)
downloadrails-d6ed7b8496dc385e0cf706f4dfb4c533cf34f19e.tar.gz
rails-d6ed7b8496dc385e0cf706f4dfb4c533cf34f19e.tar.bz2
rails-d6ed7b8496dc385e0cf706f4dfb4c533cf34f19e.zip
Merge pull request #18077 from claudiob/add-docs-for-test-order
Add docs for AS::TestCase::test_order
Diffstat (limited to 'activesupport/lib/active_support/test_case.rb')
-rw-r--r--activesupport/lib/active_support/test_case.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb
index a4ba5989b1..98b68455ab 100644
--- a/activesupport/lib/active_support/test_case.rb
+++ b/activesupport/lib/active_support/test_case.rb
@@ -16,10 +16,25 @@ module ActiveSupport
Assertion = Minitest::Assertion
class << self
+ # Sets the order in which test cases are run.
+ #
+ # ActiveSupport::TestCase.test_order = :random # => :random
+ #
+ # Valid values are:
+ # * +:random+ (to run tests in random order)
+ # * +:parallel+ (to run tests in parallel)
+ # * +:sorted+ (to run tests alphabetically by method name)
+ # * +:alpha+ (equivalent to +:sorted+)
def test_order=(new_order)
ActiveSupport.test_order = new_order
end
+ # Returns the order in which test cases are run.
+ #
+ # ActiveSupport::TestCase.test_order # => :sorted
+ #
+ # Possible values are +:random+, +:parallel+, +:alpha+, +:sorted+.
+ # Defaults to +:sorted+.
def test_order
test_order = ActiveSupport.test_order