Class: ActionCable::Channel::ConnectionStub
- Inherits:
-
Object
- Object
- ActionCable::Channel::ConnectionStub
- Defined in:
- lib/action_cable/channel/test_case.rb
Instance Attribute Summary collapse
-
#identifiers ⇒ Object
readonly
Returns the value of attribute identifiers.
-
#logger ⇒ Object
readonly
Returns the value of attribute logger.
-
#subscriptions ⇒ Object
readonly
Returns the value of attribute subscriptions.
-
#transmissions ⇒ Object
readonly
Returns the value of attribute transmissions.
Instance Method Summary collapse
-
#initialize(identifiers = {}) ⇒ ConnectionStub
constructor
A new instance of ConnectionStub.
- #transmit(cable_message) ⇒ Object
Constructor Details
#initialize(identifiers = {}) ⇒ ConnectionStub
Returns a new instance of ConnectionStub.
50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/action_cable/channel/test_case.rb', line 50 def initialize(identifiers = {}) @transmissions = [] identifiers.each do |identifier, val| define_singleton_method(identifier) { val } end @subscriptions = ActionCable::Connection::Subscriptions.new(self) @identifiers = identifiers.keys @logger = ActiveSupport::TaggedLogging.new ActiveSupport::Logger.new(StringIO.new) end |
Instance Attribute Details
#identifiers ⇒ Object (readonly)
Returns the value of attribute identifiers.
48 49 50 |
# File 'lib/action_cable/channel/test_case.rb', line 48 def identifiers @identifiers end |
#logger ⇒ Object (readonly)
Returns the value of attribute logger.
48 49 50 |
# File 'lib/action_cable/channel/test_case.rb', line 48 def logger @logger end |
#subscriptions ⇒ Object (readonly)
Returns the value of attribute subscriptions.
48 49 50 |
# File 'lib/action_cable/channel/test_case.rb', line 48 def subscriptions @subscriptions end |
#transmissions ⇒ Object (readonly)
Returns the value of attribute transmissions.
48 49 50 |
# File 'lib/action_cable/channel/test_case.rb', line 48 def transmissions @transmissions end |
Instance Method Details
#transmit(cable_message) ⇒ Object
62 63 64 |
# File 'lib/action_cable/channel/test_case.rb', line 62 def transmit() transmissions << .with_indifferent_access end |