Minitest::Test::LifecycleHooks

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

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.

# File lib/minitest/test.rb, line 174
def after_setup; end
after_teardown() Show source

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.

# File lib/minitest/test.rb, line 198
def after_teardown; end
before_setup() Show source

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

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.

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

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

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

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

# File lib/minitest/test.rb, line 189
def teardown; end

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

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部