Flowdock
method

tests

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ClassMethods
tests(channel) 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 184
          def tests(channel)
            case channel
            when String, Symbol
              self._channel_class = channel.to_s.camelize.constantize
            when Module
              self._channel_class = channel
            else
              raise NonInferrableChannelError.new(channel)
            end
          end
Register or log in to add new notes.