diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2015-07-05 22:34:23 +0200 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2015-07-05 22:34:23 +0200 |
commit | b8b50e6b043a5b1900922629edf250ccb6006085 (patch) | |
tree | 2e8f191b45e9eaa89b7a1de45888685fc8b66907 /test | |
parent | 44e7cc324df1189531b60de1c6353289c8205a97 (diff) | |
download | rails-b8b50e6b043a5b1900922629edf250ccb6006085.tar.gz rails-b8b50e6b043a5b1900922629edf250ccb6006085.tar.bz2 rails-b8b50e6b043a5b1900922629edf250ccb6006085.zip |
Extract Server configuration into a Configuration object
Diffstat (limited to 'test')
-rw-r--r-- | test/server_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/server_test.rb b/test/server_test.rb index 1e02497f61..636fa37cf7 100644 --- a/test/server_test.rb +++ b/test/server_test.rb @@ -17,7 +17,7 @@ class ServerTest < ActionCableTest end test "channel registration" do - assert_equal ChatServer.registered_channels, Set.new([ ChatChannel ]) + assert_equal ChatServer.channel_classes, Set.new([ ChatChannel ]) end test "subscribing to a channel with valid params" do |