Flowdock
method

before_setup

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: TestHelper
before_setup() 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/test_helper.rb, line 6
    def before_setup # :nodoc:
      server = ActionCable.server
      test_adapter = ActionCable::SubscriptionAdapter::Test.new(server)

      @old_pubsub_adapter = server.pubsub

      server.instance_variable_set(:@pubsub, test_adapter)
      super
    end
Register or log in to add new notes.