aboutsummaryrefslogblamecommitdiffstats
path: root/actioncable/test/subscription_adapter/redis_test.rb
blob: 4f34dd86c9a99269e3b7da6519b5f48b65d05f23 (plain) (tree)
1
2
3
4
5
6
7






                                              






                                                                          

     
require 'test_helper'
require_relative './common'

class RedisAdapterTest < ActionCable::TestCase
  include CommonSubscriptionAdapterTest

  def cable_config
    { adapter: 'redis', driver: 'ruby', url: 'redis://127.0.0.1:6379/12' }
  end
end

class RedisAdapterTest::Hiredis < RedisAdapterTest
  def cable_config
    super.merge(driver: 'hiredis')
  end
end