mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f8477f13bf
The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default.
16 lines
359 B
Ruby
16 lines
359 B
Ruby
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
|