aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/testing/mochaing.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/testing/mochaing.rb')
-rw-r--r--activesupport/lib/active_support/testing/mochaing.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/testing/mochaing.rb b/activesupport/lib/active_support/testing/mochaing.rb
new file mode 100644
index 0000000000..4ad75a6681
--- /dev/null
+++ b/activesupport/lib/active_support/testing/mochaing.rb
@@ -0,0 +1,7 @@
+begin
+ silence_warnings { require 'mocha' }
+rescue LoadError
+ # Fake Mocha::ExpectationError so we can rescue it in #run. Bleh.
+ Object.const_set :Mocha, Module.new
+ Mocha.const_set :ExpectationError, Class.new(StandardError)
+end \ No newline at end of file