aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/mocha_module.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/testing/mocha_module.rb')
-rw-r--r--activesupport/lib/active_support/testing/mocha_module.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/activesupport/lib/active_support/testing/mocha_module.rb b/activesupport/lib/active_support/testing/mocha_module.rb
deleted file mode 100644
index 833dc867f0..0000000000
--- a/activesupport/lib/active_support/testing/mocha_module.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-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