aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/subscription_adapter/async_test.rb
blob: 7bc2e55d40dc6dcfc88d281fc65c584a7d9ed1e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "test_helper"
require_relative "./common"

class AsyncAdapterTest < ActionCable::TestCase
  include CommonSubscriptionAdapterTest

  def setup
    super

    @tx_adapter.shutdown
    @tx_adapter = @rx_adapter
  end

  def cable_config
    { adapter: "async" }
  end
end