Class: Minitest::Test
Relationships & Source Files | |
Namespace Children | |
Modules:
| |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
Minitest::Runnable
|
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 Assertions
Constant Summary
-
PASSTHROUGH_EXCEPTIONS =
Internal use only
# File 'lib/minitest/test.rb', line 14[NoMemoryError, SignalException, SystemExit]
-
TEARDOWN_METHODS =
Internal use only
# File 'lib/minitest/test.rb', line 96%w[ before_teardown teardown after_teardown ]
Runnable - Inherited
Assertions - Included
Class Attribute Summary
- .io_lock rw Internal use only
Class Method Summary
-
.i_suck_and_my_tests_are_order_dependent!
Call this at the top of your tests when you absolutely positively need to have ordered tests.
-
.make_my_diffs_pretty!
Make diffs for this
Test
use#pretty_inspect
so that diff in assert_equal can have more details. -
.parallelize_me!
Call this at the top of your tests when you want to run your tests in parallel.
-
.runnable_methods
Returns all instance methods starting with “test_”.
-
.test_order
Defines the order to run tests (:random by default).
Guard - Extended
jruby? | Is this running on jruby? |
maglev? | Is this running on maglev? |
mri? | Is this running on mri? |
rubinius? | Is this running on rubinius? |
windows? | Is this running on windows? |
Runnable - Inherited
.methods_matching | Returns all instance methods matching the pattern |
.run | Responsible for running all runnable methods in a given class, each in its own instance. |
.run_one_method | Runs a single method and has the reporter record the result. |
.runnable_methods | Each subclass of Runnable is responsible for overriding this method to return all runnable methods. |
.runnables | Returns all subclasses of Runnable. |
.inherited, .new, .on_signal, .reset, .with_info_handler |
Instance Attribute Summary
-
#error? ⇒ Boolean
readonly
Did this run error?
-
#passed? ⇒ Boolean
readonly
Did this run pass?
-
#skipped? ⇒ Boolean
readonly
Was this run skipped?
-
#time
rw
The time it took to run this test.
Assertions - Included
#skipped? | Was this testcase skipped? Meant for |
Runnable - Inherited
Instance Method Summary
-
#location
The location identifier of this test.
-
#result_code
Returns “.”, “F”, or “E” based on the result of the run.
-
#run
Runs a single test with setup/teardown hooks.
- #capture_exceptions Internal use only
- #marshal_dump Internal use only
- #marshal_load(ary) Internal use only
- #time_it Internal use only
- #to_s Internal use only
- #with_info_handler(&block) Internal use only
Guard - Included
#jruby? | Is this running on jruby? |
#maglev? | Is this running on maglev? |
#mri? | Is this running on mri? |
#rubinius? | Is this running on rubinius? |
#windows? | Is this running on windows? |
LifecycleHooks - Included
#after_setup | Runs before every test, after setup. |
#after_teardown | Runs after every test, after teardown. |
#before_setup | Runs before every test, before setup. |
#before_teardown | Runs after every test, before teardown. |
#setup | Runs before every test. |
#teardown | Runs after every test. |
Assertions - Included
#assert | Fails unless |
#assert_empty | Fails unless |
#assert_equal | Fails unless |
#assert_in_delta | For comparing Floats. |
#assert_in_epsilon | For comparing Floats. |
#assert_includes | Fails unless |
#assert_instance_of | Fails unless |
#assert_kind_of | Fails unless |
#assert_match | Fails unless |
#assert_mock | Assert that the mock verifies correctly. |
#assert_nil | Fails unless |
#assert_operator | For testing with binary operators. |
#assert_output | Fails if stdout or stderr do not output the expected results. |
#assert_predicate | For testing with predicates. |
#assert_raises | Fails unless the block raises one of |
#assert_respond_to | Fails unless |
#assert_same | Fails unless |
#assert_send |
|
#assert_silent | Fails if the block outputs anything to stderr or stdout. |
#assert_throws | Fails unless the block throws |
#capture_io | Captures $stdout and $stderr into strings: |
#capture_subprocess_io | Captures $stdout and $stderr into strings, using Tempfile to ensure that subprocess IO is captured as well. |
#diff | Returns a diff between |
#exception_details | Returns details for exception |
#flunk | Fails with |
#message | Returns a proc that will output |
#mu_pp | This returns a human-readable version of |
#mu_pp_for_diff | This returns a diff-able human-readable version of |
#pass | used for counting assertions. |
#refute | Fails if |
#refute_empty | Fails if |
#refute_equal | Fails if |
#refute_in_delta | For comparing Floats. |
#refute_in_epsilon | For comparing Floats. |
#refute_includes | Fails if |
#refute_instance_of | Fails if |
#refute_kind_of | Fails if |
#refute_match | Fails if |
#refute_nil | Fails if |
#refute_operator | Fails if |
#refute_predicate | For testing with predicates. |
#refute_respond_to | Fails if |
#refute_same | Fails if |
#skip | Skips the current run. |
#_synchronize |
Runnable - Inherited
#result_code | Returns a single character string to print based on the result of the run. |
#run | Runs a single method. |
#failure, #marshal_dump, #marshal_load |
Constructor Details
This class inherits a constructor from Minitest::Runnable
Class Attribute Details
.io_lock (rw)
# File 'lib/minitest/test.rb', line 17
class << self; attr_accessor :io_lock; end
Class Method Details
.i_suck_and_my_tests_are_order_dependent!
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/test.rb', line 26
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!
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.
# File 'lib/minitest/test.rb', line 39
def self.make_my_diffs_pretty! require "pp" define_method :mu_pp, &:pretty_inspect end
.parallelize_me!
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.
.runnable_methods
Returns all instance methods starting with “test_”. Based on #test_order
, the methods are either sorted, randomized (default), or run in parallel.
# File 'lib/minitest/test.rb', line 60
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
Defines the order to run tests (:random by default). Override this or use a convenience method to change it for your tests.
# File 'lib/minitest/test.rb', line 78
def self.test_order :random end
Instance Attribute Details
#error? ⇒ Boolean
(readonly)
Did this run error?
# File 'lib/minitest/test.rb', line 216
def error? self.failures.any? { |f| UnexpectedError === f } end
#passed? ⇒ Boolean
(readonly)
Did this run pass?
Note: skipped runs are not considered passing, but they don't cause the process to exit non-zero.
# File 'lib/minitest/test.rb', line 234
def passed? not self.failure end
#skipped? ⇒ Boolean
(readonly)
Was this run skipped?
# File 'lib/minitest/test.rb', line 248
def skipped? self.failure and Skip === self.failure end
#time (rw)
The time it took to run this test.
# File 'lib/minitest/test.rb', line 85
attr_accessor :time
Instance Method Details
#capture_exceptions
# File 'lib/minitest/test.rb', line 203
def capture_exceptions # :nodoc: yield rescue *PASSTHROUGH_EXCEPTIONS raise rescue Assertion => e self.failures << e rescue Exception => e self.failures << UnexpectedError.new(e) end
#location
The location identifier of this test.
#marshal_dump
# File 'lib/minitest/test.rb', line 87
def marshal_dump # :nodoc: super << self.time end
#marshal_load(ary)
# File 'lib/minitest/test.rb', line 91
def marshal_load ary # :nodoc: self.time = ary.pop super end
#result_code
Returns “.”, “F”, or “E” based on the result of the run.
# File 'lib/minitest/test.rb', line 241
def result_code self.failure and self.failure.result_code or "." end
#run
Runs a single test with setup/teardown hooks.
# File 'lib/minitest/test.rb', line 101
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 self # per contract end
#time_it
# File 'lib/minitest/test.rb', line 252
def time_it # :nodoc: t0 = Minitest.clock_time yield ensure self.time = Minitest.clock_time - t0 end
#to_s
#with_info_handler(&block)
# File 'lib/minitest/test.rb', line 268
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