1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actioncable/test/stubs/test_connection.rb

26 lines
506 B
Ruby
Raw Normal View History

2015-07-12 11:07:31 -04:00
require 'stubs/user'
class TestConnection
attr_reader :identifiers, :logger, :current_user, :transmissions
def initialize(user = User.new("lifo"))
@identifiers = [ :current_user ]
@current_user = user
@logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new)
@transmissions = []
end
def pubsub
2016-01-15 17:11:30 -05:00
SuccessAdapter.new(TestServer.new)
end
2015-07-12 11:07:31 -04:00
def transmit(data)
@transmissions << data
end
def last_transmission
@transmissions.last
end
end