aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/testing/mocha_module.rb
blob: 833dc867f04c48d535376821f7378fe1448680f1 (plain) (tree)
1
2
3
4
5



                      
                           
















                          
module ActiveSupport
  module Testing
    module MochaModule
      begin
        require 'mocha/api'
        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