aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2012-08-02 06:43:47 -0500
committerMike Gunderloy <MikeG1@larkfarm.com>2012-08-02 06:43:47 -0500
commita252436d64aa5d1f971e5d57b6ec177a207796e8 (patch)
tree82f6f16af5931ee8b78f8b5ad344bb23088dcb97 /activesupport
parent74cf196f63742f21213fd5f8a889e8ee29ab621f (diff)
downloadrails-a252436d64aa5d1f971e5d57b6ec177a207796e8.tar.gz
rails-a252436d64aa5d1f971e5d57b6ec177a207796e8.tar.bz2
rails-a252436d64aa5d1f971e5d57b6ec177a207796e8.zip
Fix ActiveSupport integration with Mocha > 0.12.1
Mocha 0.12.2 renames the Integration module to MonkeyPatching. This breaks the code Rails uses to retrieve the assertion counter from Mocha.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/testing/setup_and_teardown.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/testing/setup_and_teardown.rb b/activesupport/lib/active_support/testing/setup_and_teardown.rb
index 78d914f8cf..f2268d1767 100644
--- a/activesupport/lib/active_support/testing/setup_and_teardown.rb
+++ b/activesupport/lib/active_support/testing/setup_and_teardown.rb
@@ -104,8 +104,10 @@ module ActiveSupport
if respond_to?(:mocha_verify) # using mocha
if defined?(Mocha::TestCaseAdapter::AssertionCounter)
Mocha::TestCaseAdapter::AssertionCounter.new(result)
- else
+ elsif defined?(Mocha::Integration::TestUnit::AssertionCounter)
Mocha::Integration::TestUnit::AssertionCounter.new(result)
+ else
+ Mocha::MonkeyPatching::TestUnit::AssertionCounter.new(result)
end
end
end