mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
293 B
Ruby
15 lines
293 B
Ruby
require 'ostruct'
|
|
|
|
class TestServer
|
|
include ActionCable::Server::Connections
|
|
|
|
attr_reader :logger, :config
|
|
|
|
def initialize
|
|
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
|
|
@config = OpenStruct.new(log_tags: [])
|
|
end
|
|
|
|
def send_async
|
|
end
|
|
end
|