module SibaMinitestPlugin
Public Instance Methods
after_teardown()
click to toggle source
Calls superclass method
# File lib/siba/helpers/test/siba_minitest_plugin.rb, line 7 def after_teardown SibaTest.teardown_hooks.each { |hook| hook.call } super end
before_setup()
click to toggle source
Calls superclass method
# File lib/siba/helpers/test/siba_minitest_plugin.rb, line 2 def before_setup super SibaTest.setup_hooks.each { |hook| hook.call } end