blob: a65148cf1f9757b8cbbaaa40fa4d1d97f15c56f0 (
plain) (
tree)
|
|
require 'active_support/concern'
require 'active_support/callbacks'
module ActiveSupport
module Testing
module SetupAndTeardown
extend ActiveSupport::Concern
included do
include ActiveSupport::Callbacks
define_callbacks :setup, :teardown
end
module ClassMethods
def setup(*args, &block)
set_callback(:setup, :before, *args, &block)
end
def teardown(*args, &block)
set_callback(:teardown, :after, *args, &block)
end
end
def before_setup
super
run_callbacks :setup
end
def after_teardown
run_callbacks :teardown
super
end
end
end
end
|