diff options
author | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-06-08 23:25:32 +0300 |
---|---|---|
committer | bogdanvlviv <bogdanvlviv@gmail.com> | 2018-06-08 23:29:05 +0300 |
commit | 74a9a2927774e21b62913eca9103be78515a4719 (patch) | |
tree | 9b09efd1e0d7c9c4a60dadfadae0c99cd3695b83 /actioncable/test/channel | |
parent | d97f1670bd0437d9b08aa4dd8ea8d2127d3b72e5 (diff) | |
download | rails-74a9a2927774e21b62913eca9103be78515a4719.tar.gz rails-74a9a2927774e21b62913eca9103be78515a4719.tar.bz2 rails-74a9a2927774e21b62913eca9103be78515a4719.zip |
Include `ActiveSupport::Testing::MethodCallAssertions` to `ActionCable::TestCase`
Remove all `include ActiveSupport::Testing::MethodCallAssertions`
in actioncable's tests since we can do it only in `ActionCable::TestCase`
in order to prevent code duplication.
We use the same approach for other modules of Rails.
Diffstat (limited to 'actioncable/test/channel')
-rw-r--r-- | actioncable/test/channel/broadcasting_test.rb | 3 | ||||
-rw-r--r-- | actioncable/test/channel/periodic_timers_test.rb | 3 | ||||
-rw-r--r-- | actioncable/test/channel/stream_test.rb | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/actioncable/test/channel/broadcasting_test.rb b/actioncable/test/channel/broadcasting_test.rb index b2f8681892..2cbfabc1d0 100644 --- a/actioncable/test/channel/broadcasting_test.rb +++ b/actioncable/test/channel/broadcasting_test.rb @@ -1,13 +1,10 @@ # frozen_string_literal: true require "test_helper" -require "active_support/testing/method_call_assertions" require "stubs/test_connection" require "stubs/room" class ActionCable::Channel::BroadcastingTest < ActionCable::TestCase - include ActiveSupport::Testing::MethodCallAssertions - class ChatChannel < ActionCable::Channel::Base end diff --git a/actioncable/test/channel/periodic_timers_test.rb b/actioncable/test/channel/periodic_timers_test.rb index d6b8992148..0c979f4c7c 100644 --- a/actioncable/test/channel/periodic_timers_test.rb +++ b/actioncable/test/channel/periodic_timers_test.rb @@ -4,11 +4,8 @@ require "test_helper" require "stubs/test_connection" require "stubs/room" require "active_support/time" -require "active_support/testing/method_call_assertions" class ActionCable::Channel::PeriodicTimersTest < ActionCable::TestCase - include ActiveSupport::Testing::MethodCallAssertions - class ChatChannel < ActionCable::Channel::Base # Method name arg periodically :send_updates, every: 1 diff --git a/actioncable/test/channel/stream_test.rb b/actioncable/test/channel/stream_test.rb index ed42f1acd4..bfe1f92946 100644 --- a/actioncable/test/channel/stream_test.rb +++ b/actioncable/test/channel/stream_test.rb @@ -1,7 +1,6 @@ # frozen_string_literal: true require "test_helper" -require "active_support/testing/method_call_assertions" require "minitest/mock" require "stubs/test_connection" require "stubs/room" @@ -164,8 +163,6 @@ module ActionCable::StreamTests end class StreamFromTest < ActionCable::TestCase - include ActiveSupport::Testing::MethodCallAssertions - setup do @server = TestServer.new(subscription_adapter: ActionCable::SubscriptionAdapter::Async) @server.config.allowed_request_origins = %w( http://rubyonrails.com ) |