module ActiveSupport::Testing::SetupAndTeardown

Included modules:
ActiveSupport::Callbacks

Adds support for setup and teardown callbacks. These callbacks serve as a replacement to overwriting the #setup and #teardown methods of your TestCase.

class ExampleTest < ActiveSupport::TestCase
  setup do
    # ...
  end

  teardown do
    # ...
  end
end

© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.