module ActionCable::Connection::Assertions

Public Instance Methods

assert_reject_connection(&block) Show source
# File actioncable/lib/action_cable/connection/test_case.rb, line 25
def assert_reject_connection(&block)
  assert_raises(Authorization::UnauthorizedError, "Expected to reject connection but no rejection was made", &block)
end

Asserts that the connection is rejected (via reject_unauthorized_connection).

# Asserts that connection without user_id fails
assert_reject_connection { connect params: { user_id: '' } }

© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.