module Minitest::Test::LifecycleHooks
Provides before/after hooks for setup and teardown. These are meant for library writers, NOT for regular test authors. See before_setup
for an example.
Public Instance Methods
Source
# File lib/minitest/test.rb, line 163 def after_setup; end
Runs before every test, after setup. This hook is meant for libraries to extend minitest. It is not meant to be used by test developers.
See before_setup
for an example.
Source
# File lib/minitest/test.rb, line 187 def after_teardown; end
Runs after every test, after teardown. This hook is meant for libraries to extend minitest. It is not meant to be used by test developers.
See before_setup
for an example.
Source
# File lib/minitest/test.rb, line 148 def before_setup; end
Runs before every test, before setup. This hook is meant for libraries to extend minitest. It is not meant to be used by test developers.
As a simplistic example:
module MyMinitestPlugin def before_setup super # ... stuff to do before setup is run end def after_setup # ... stuff to do after setup is run super end def before_teardown super # ... stuff to do before teardown is run end def after_teardown # ... stuff to do after teardown is run super end end class Minitest::Test include MyMinitestPlugin end
Source
# File lib/minitest/test.rb, line 172 def before_teardown; end
Runs after every test, before teardown. This hook is meant for libraries to extend minitest. It is not meant to be used by test developers.
See before_setup
for an example.
Source
# File lib/minitest/test.rb, line 154 def setup; end
Runs before every test. Use this to set up before each test run.
Source
# File lib/minitest/test.rb, line 178 def teardown; end
Runs after every test. Use this to clean up after each test run.