diff options
author | Akira Matsuda <ronnie@dio.jp> | 2013-01-04 04:22:30 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2013-01-04 04:22:30 +0900 |
commit | f89fa2ae71f8a0496b84793b2a2ad205127f3102 (patch) | |
tree | e894d930cecffbc4286188a76f786a62f61f44c1 /activesupport | |
parent | 3d1bc89ec8e6558bac81c4e9fce82b586f742629 (diff) | |
download | rails-f89fa2ae71f8a0496b84793b2a2ad205127f3102.tar.gz rails-f89fa2ae71f8a0496b84793b2a2ad205127f3102.tar.bz2 rails-f89fa2ae71f8a0496b84793b2a2ad205127f3102.zip |
`Model.all` alone does nothing
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/log_subscriber/test_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/log_subscriber/test_helper.rb b/activesupport/lib/active_support/log_subscriber/test_helper.rb index 63dad7e01a..f9a98686d3 100644 --- a/activesupport/lib/active_support/log_subscriber/test_helper.rb +++ b/activesupport/lib/active_support/log_subscriber/test_helper.rb @@ -15,7 +15,7 @@ module ActiveSupport # end # # def test_basic_query_logging - # Developer.all + # Developer.all.to_a # wait # assert_equal 1, @logger.logged(:debug).size # assert_match(/Developer Load/, @logger.logged(:debug).last) |