diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-15 21:51:24 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-10-15 21:51:24 -0700 |
commit | b0f55dc1f82b3d4fc56d44133b10926be3efa607 (patch) | |
tree | 732de37ac167ac04cffd40ca90f2e8a1d24839cf | |
parent | ef75d05829a4bbaeab4edb157194c2bd7f0ef60a (diff) | |
download | rails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.tar.gz rails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.tar.bz2 rails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.zip |
Remove framework subscriber tests which depends on AR, which isn't loaded
-rw-r--r-- | railties/test/application/notifications_test.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/test/application/notifications_test.rb b/railties/test/application/notifications_test.rb index c861d10c35..0fdb4a083a 100644 --- a/railties/test/application/notifications_test.rb +++ b/railties/test/application/notifications_test.rb @@ -39,10 +39,6 @@ module ApplicationTests assert_equal :foo, ActiveSupport::Notifications.queue.events.first end - test "frameworks subscribers are loaded" do - assert_equal 1, ActiveSupport::Notifications.queue.subscribers.count { |s| s == "sql" } - end - test "configuration subscribers are loaded" do assert_equal 1, ActiveSupport::Notifications.queue.subscribers.count { |s| s == /listening/ } end |