diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-02-05 22:56:52 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2016-02-14 17:46:48 +0100 |
commit | 861ece99bb6d7ebdb27fad7db5ccc05340aaf0e5 (patch) | |
tree | edfbd5ef05e31e58d986c9e000d122454e9934e5 /actioncable/test/client_test.rb | |
parent | 661298176c72eefc6d0f42b58210119e76962364 (diff) | |
download | rails-861ece99bb6d7ebdb27fad7db5ccc05340aaf0e5.tar.gz rails-861ece99bb6d7ebdb27fad7db5ccc05340aaf0e5.tar.bz2 rails-861ece99bb6d7ebdb27fad7db5ccc05340aaf0e5.zip |
Default connection class to ActionCable::Connection::Base.
Instead of depending on ApplicationCable::Connection being defined at initialize
we should inject it in the Railtie.
Thus we can kill more setup in the tests too.
Diffstat (limited to 'actioncable/test/client_test.rb')
-rw-r--r-- | actioncable/test/client_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/actioncable/test/client_test.rb b/actioncable/test/client_test.rb index f2b090cc52..d294fa7bc6 100644 --- a/actioncable/test/client_test.rb +++ b/actioncable/test/client_test.rb @@ -13,9 +13,6 @@ class ClientTest < ActionCable::TestCase def setup # TODO: ActionCable requires a *lot* of setup at the moment... - ::Object.const_set(:ApplicationCable, Module.new) - ::ApplicationCable.const_set(:Connection, Class.new(ActionCable::Connection::Base)) - ActionCable.instance_variable_set(:@server, nil) server = ActionCable.server inner_logger = Logger.new(StringIO.new).tap { |l| l.level = Logger::UNKNOWN } @@ -36,11 +33,6 @@ class ClientTest < ActionCable::TestCase def teardown $VERBOSE = @previous_verbose - - begin - ::Object.send(:remove_const, :ApplicationCable) - rescue NameError - end end def with_puma_server(rack_app = ActionCable.server, port = 3099) |