Module: MiniTest::Unit::Deprecated::HooksCM
- Included in:
- TestCase
- Defined in:
- lib/minitest/unit.rb
Overview
This entire module is deprecated and slated for removal on 2013-01-01.
Instance Method Summary collapse
-
#add_setup_hook(arg = nil, &block) ⇒ Object
Adds a block of code that will be executed before every TestCase is run.
-
#add_teardown_hook(arg = nil, &block) ⇒ Object
Adds a block of code that will be executed after every TestCase is run.
-
#setup_hooks ⇒ Object
:nodoc:.
-
#teardown_hooks ⇒ Object
:nodoc:.
Instance Method Details
#add_setup_hook(arg = nil, &block) ⇒ Object
Adds a block of code that will be executed before every TestCase is run.
NOTE: This method is deprecated, use before/after_setup. It will be removed on 2013-01-01.
1215 1216 1217 1218 1219 |
# File 'lib/minitest/unit.rb', line 1215 def add_setup_hook arg=nil, &block warn "NOTE: MiniTest::Unit::TestCase.add_setup_hook is deprecated, use before/after_setup via a module (and call super!). It will be removed on 2013-01-01. Called from #{caller.first}" hook = arg || block @setup_hooks << hook end |
#add_teardown_hook(arg = nil, &block) ⇒ Object
Adds a block of code that will be executed after every TestCase is run.
NOTE: This method is deprecated, use before/after_teardown. It will be removed on 2013-01-01.
1236 1237 1238 1239 1240 |
# File 'lib/minitest/unit.rb', line 1236 def add_teardown_hook arg=nil, &block warn "NOTE: MiniTest::Unit::TestCase#add_teardown_hook is deprecated, use before/after_teardown. It will be removed on 2013-01-01. Called from #{caller.first}" hook = arg || block @teardown_hooks << hook end |
#setup_hooks ⇒ Object
:nodoc:
1221 1222 1223 1224 1225 1226 1227 |
# File 'lib/minitest/unit.rb', line 1221 def setup_hooks # :nodoc: if superclass.respond_to? :setup_hooks then superclass.setup_hooks else [] end + @setup_hooks end |
#teardown_hooks ⇒ Object
:nodoc:
1242 1243 1244 1245 1246 1247 1248 |
# File 'lib/minitest/unit.rb', line 1242 def teardown_hooks # :nodoc: if superclass.respond_to? :teardown_hooks then superclass.teardown_hooks else [] end + @teardown_hooks end |