Flowdock
method

determine_default_channel

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ClassMethods
determine_default_channel(name) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actioncable/lib/action_cable/channel/test_case.rb, line 203
          def determine_default_channel(name)
            channel = determine_constant_from_test_name(name) do |constant|
              Class === constant && constant < ActionCable::Channel::Base
            end
            raise NonInferrableChannelError.new(name) if channel.nil?
            channel
          end
Register or log in to add new notes.