This method is deprecated or moved on the latest stable version.
The last existing version (v2_1_10) is shown here.
i_suck_and_my_tests_are_order_dependent!()
public
Call this at the top of your tests when you absolutely positively need to
have ordered tests. In doing so, you’re admitting that you suck and your
tests are weak.
# File lib/minitest/unit.rb, line 1332
def self.i_suck_and_my_tests_are_order_dependent!
class << self
undef_method :test_order if method_defined? :test_order
define_method :test_order do :alpha end
end
end