aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/subscription_adapter/async_test.rb
blob: 8a447c7a4f2cba9d3be358ecaf210f18ba1eef12 (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