aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/mocha_module.rb
blob: 833dc867f04c48d535376821f7378fe1448680f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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