The integration tests task. Buildr has one such task (see Buildr#integration) that runs all tests marked with :integration=>true, and has a setup/teardown tasks separate from the unit tests.
Returns the setup task. The setup task is executed before running the integration tests.
# File lib/buildr/core/test.rb, line 595 def setup(*prereqs, &block) @setup.enhance prereqs, &block end
Returns the teardown task. The teardown task is executed after running the integration tests.
# File lib/buildr/core/test.rb, line 604 def teardown(*prereqs, &block) @teardown.enhance prereqs, &block end