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

after_setup() Show source
# File lib/minitest/test.rb, line 167
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.

after_teardown() Show source
# File lib/minitest/test.rb, line 191
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.

before_setup() Show source
# File lib/minitest/test.rb, line 152
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
before_teardown() Show source
# File lib/minitest/test.rb, line 176
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.

setup() Show source
# File lib/minitest/test.rb, line 158
def setup; end

Runs before every test. Use this to set up before each test run.

teardown() Show source
# File lib/minitest/test.rb, line 182
def teardown; end

Runs after every test. Use this to clean up after each test run.

© Ryan Davis, seattle.rb
Licensed under the MIT License.