aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/notifications_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-10-15 21:51:24 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2009-10-15 21:51:24 -0700
commitb0f55dc1f82b3d4fc56d44133b10926be3efa607 (patch)
tree732de37ac167ac04cffd40ca90f2e8a1d24839cf /railties/test/application/notifications_test.rb
parentef75d05829a4bbaeab4edb157194c2bd7f0ef60a (diff)
downloadrails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.tar.gz
rails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.tar.bz2
rails-b0f55dc1f82b3d4fc56d44133b10926be3efa607.zip
Remove framework subscriber tests which depends on AR, which isn't loaded
Diffstat (limited to 'railties/test/application/notifications_test.rb')
-rw-r--r--railties/test/application/notifications_test.rb4
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