Class: Minitest::Test
- Extended by:
- Guard
- Includes:
- Assertions, Guard, Reportable, LifecycleHooks
- Defined in:
- lib/minitest/test.rb,
lib/minitest/hell.rb
Overview
Subclass Test to create your own tests. Typically you’ll want a Test subclass per implementation class.
See Minitest::Assertions
Direct Known Subclasses
Defined Under Namespace
Modules: LifecycleHooks
Constant Summary collapse
- PASSTHROUGH_EXCEPTIONS =
:nodoc:
[NoMemoryError, SignalException, SystemExit]
- TEARDOWN_METHODS =
:nodoc:
%w[ before_teardown teardown after_teardown ]
Constants included from Assertions
Assertions::E, Assertions::UNDEFINED
Constants inherited from Runnable
Class Attribute Summary collapse
-
.io_lock ⇒ Object
Returns the value of attribute io_lock.
Attributes inherited from Runnable
Class Method Summary collapse
-
.i_suck_and_my_tests_are_order_dependent! ⇒ Object
Call this at the top of your tests when you absolutely positively need to have ordered tests.
-
.make_my_diffs_pretty! ⇒ Object
Make diffs for this Test use #pretty_inspect so that diff in assert_equal can have more details.
-
.parallelize_me! ⇒ Object
Call this at the top of your tests when you want to run your tests in parallel.
-
.runnable_methods ⇒ Object
Returns all instance methods starting with “test_”.
-
.test_order ⇒ Object
Defines the order to run tests (:random by default).
Instance Method Summary collapse
-
#capture_exceptions ⇒ Object
LifecycleHooks.
-
#class_name ⇒ Object
:nodoc:.
-
#run ⇒ Object
Runs a single test with setup/teardown hooks.
-
#with_info_handler(&block) ⇒ Object
:nodoc:.
Methods included from Guard
jruby?, maglev?, mri?, osx?, rubinius?, windows?
Methods included from LifecycleHooks
#after_setup, #after_teardown, #before_setup, #before_teardown, #setup, #teardown
Methods included from Reportable
#error?, #location, #passed?, #result_code, #skipped?
Methods included from Assertions
#_synchronize, #assert, #assert_empty, #assert_equal, #assert_in_delta, #assert_in_epsilon, #assert_includes, #assert_instance_of, #assert_kind_of, #assert_match, #assert_mock, #assert_nil, #assert_operator, #assert_output, #assert_path_exists, #assert_predicate, #assert_raises, #assert_respond_to, #assert_same, #assert_send, #assert_silent, #assert_throws, #capture_io, #capture_subprocess_io, #diff, diff, diff=, #exception_details, #fail_after, #flunk, #message, #mu_pp, #mu_pp_for_diff, #pass, #refute, #refute_empty, #refute_equal, #refute_in_delta, #refute_in_epsilon, #refute_includes, #refute_instance_of, #refute_kind_of, #refute_match, #refute_nil, #refute_operator, #refute_path_exists, #refute_predicate, #refute_respond_to, #refute_same, #skip, #skip_until, #skipped?, #things_to_diff
Methods inherited from Runnable
#failure, inherited, #initialize, #marshal_dump, #marshal_load, methods_matching, #name, #name=, on_signal, #passed?, reset, #result_code, run, run_one_method, runnables, #skipped?, #time_it, with_info_handler
Constructor Details
This class inherits a constructor from Minitest::Runnable
Class Attribute Details
.io_lock ⇒ Object
Returns the value of attribute io_lock.
22 23 24 |
# File 'lib/minitest/test.rb', line 22 def io_lock @io_lock end |
Class Method Details
.i_suck_and_my_tests_are_order_dependent! ⇒ Object
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.
31 32 33 34 35 36 |
# File 'lib/minitest/test.rb', line 31 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 |
.make_my_diffs_pretty! ⇒ Object
Make diffs for this Test use #pretty_inspect so that diff in assert_equal can have more details. NOTE: this is much slower than the regular inspect but much more usable for complex objects.
44 45 46 47 48 |
# File 'lib/minitest/test.rb', line 44 def self.make_my_diffs_pretty! require "pp" define_method :mu_pp, &:pretty_inspect end |
.parallelize_me! ⇒ Object
Call this at the top of your tests when you want to run your tests in parallel. In doing so, you’re admitting that you rule and your tests are awesome.
55 56 57 58 |
# File 'lib/minitest/test.rb', line 55 def self.parallelize_me! include Minitest::Parallel::Test extend Minitest::Parallel::Test::ClassMethods end |
.runnable_methods ⇒ Object
Returns all instance methods starting with “test_”. Based on #test_order, the methods are either sorted, randomized (default), or run in parallel.
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/minitest/test.rb', line 65 def self.runnable_methods methods = methods_matching(/^test_/) case self.test_order when :random, :parallel then max = methods.size methods.sort.sort_by { rand max } when :alpha, :sorted then methods.sort else raise "Unknown test_order: #{self.test_order.inspect}" end end |
.test_order ⇒ Object
Defines the order to run tests (:random by default). Override this or use a convenience method to change it for your tests.
83 84 85 |
# File 'lib/minitest/test.rb', line 83 def self.test_order :random end |
Instance Method Details
#capture_exceptions ⇒ Object
LifecycleHooks
194 195 196 197 198 199 200 201 202 |
# File 'lib/minitest/test.rb', line 194 def capture_exceptions # :nodoc: yield rescue *PASSTHROUGH_EXCEPTIONS raise rescue Assertion => e self.failures << e rescue Exception => e self.failures << UnexpectedError.new(e) end |
#class_name ⇒ Object
:nodoc:
15 16 17 |
# File 'lib/minitest/test.rb', line 15 def class_name # :nodoc: self.class.name # for Minitest::Reportable end |
#run ⇒ Object
Runs a single test with setup/teardown hooks.
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/minitest/test.rb', line 92 def run with_info_handler do time_it do capture_exceptions do before_setup; setup; after_setup self.send self.name end TEARDOWN_METHODS.each do |hook| capture_exceptions do self.send hook end end end end Result.from self # per contract end |
#with_info_handler(&block) ⇒ Object
:nodoc:
204 205 206 207 208 209 210 211 212 |
# File 'lib/minitest/test.rb', line 204 def with_info_handler &block # :nodoc: t0 = Minitest.clock_time handler = lambda do warn "\nCurrent: %s#%s %.2fs" % [self.class, self.name, Minitest.clock_time - t0] end self.class.on_signal ::Minitest.info_signal, handler, &block end |