module Minitest::SlowTest

Constants

VERSION

Attributes

exclude_test_name[W]
long_test_time[W]

Public Class Methods

exclude_test_name() click to toggle source
# File lib/minitest/slow_test.rb, line 16
def exclude_test_name
  unless defined? @exclude_test_name
    @exclude_test_name = []
  end
  @exclude_test_name
end
long_test_time() click to toggle source
# File lib/minitest/slow_test.rb, line 9
def long_test_time
  unless defined? @long_test_time
    @long_test_time = 1.0
  end
  @long_test_time.to_f
end