aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/subscription_adapter/inline_test.rb
blob: 75ea51e6b33ceee6b25d2fc366f0b917f83fd764 (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 InlineAdapterTest < ActionCable::TestCase
  include CommonSubscriptionAdapterTest

  def setup
    super

    @tx_adapter.shutdown
    @tx_adapter = @rx_adapter
  end

  def cable_config
    { adapter: 'inline' }
  end
end