Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more
# File test/unit/testcase.rb, line 24 def self.method_added(name) return unless name.to_s.start_with?("test_") @test_methods ||= {} if @test_methods[name] warn "test/unit warning: method #{ self }##{ name } is redefined" end @test_methods[name] = true end
# File test/unit/testcase.rb, line 20 def self.test_order :sorted end
# File test/unit/parallel.rb, line 175 def on_parallel_worker? true end
# File test/unit/testcase.rb, line 15 def run runner @options = runner.options super runner end