diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-17 20:46:48 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2013-05-17 20:46:48 -0700 |
commit | 4d119ce594d4d1d3eb5f18aacda13f81b7e0a136 (patch) | |
tree | ab66fd93ffa3835338714c4d62126c5c7f459264 /activerecord/lib | |
parent | 3cb2c14f87c536fde0b04d6b14385d3b730a84ff (diff) | |
parent | 1ff53413852db94476d4851e1535669b953c9393 (diff) | |
download | rails-4d119ce594d4d1d3eb5f18aacda13f81b7e0a136.tar.gz rails-4d119ce594d4d1d3eb5f18aacda13f81b7e0a136.tar.bz2 rails-4d119ce594d4d1d3eb5f18aacda13f81b7e0a136.zip |
Merge branch 'master' into experiment
* master:
stop swallowing exceptions in assert_queries. Methods that raise an exception are unlikely to pass this assertion, but since the assertions raise an exception, the original exception is lost.
Bug fix: Evented notification subscribers can handle published events
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/test_case.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/test_case.rb b/activerecord/lib/active_record/test_case.rb index e9142481a3..1b4c473bfc 100644 --- a/activerecord/lib/active_record/test_case.rb +++ b/activerecord/lib/active_record/test_case.rb @@ -35,8 +35,7 @@ module ActiveRecord def assert_queries(num = 1, options = {}) ignore_none = options.fetch(:ignore_none) { num == :any } SQLCounter.clear_log - yield - ensure + x = yield the_log = ignore_none ? SQLCounter.log_all : SQLCounter.log if num == :any assert_operator the_log.size, :>=, 1, "1 or more queries expected, but none were executed." @@ -44,6 +43,7 @@ module ActiveRecord mesg = "#{the_log.size} instead of #{num} queries were executed.#{the_log.size == 0 ? '' : "\nQueries:\n#{the_log.join("\n")}"}" assert_equal num, the_log.size, mesg end + x end def assert_no_queries(&block) |