aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/stubs/test_connection.rb
blob: 384abc5e76f821b6b51dcd640859df56bf469142 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 transmit(data)
    @transmissions << data
  end

  def last_transmission
    @transmissions.last
  end
end