1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support/testing/mocha_module.rb

22 lines
366 B
Ruby

module ActiveSupport
module Testing
module MochaModule
begin
require 'mocha_standalone'
include Mocha::API
def before_setup
mocha_setup
super
end
def after_teardown
super
mocha_verify
mocha_teardown
end
rescue LoadError
end
end
end
end