Methods
- C
- N
- T
Attributes
| [R] | config | |
| [R] | identifiers | |
| [R] | logger | |
| [R] | subscriptions | |
| [R] | transmissions |
Class Public methods
new(identifiers = {}) Link
Source: show
# File actioncable/lib/action_cable/channel/test_case.rb, line 52 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) @config = ActionCable::Server::Configuration.new end