rails/actioncable/CHANGELOG.md

597 B

  • Add two new assertion methods for ActionCable test cases: assert_has_no_stream and assert_has_no_stream_for. These methods can be used to assert that a stream has been stopped, e.g. via stop_stream or stop_stream_for. They complement the already existing assert_has_stream and assert_has_stream_for methods.

    assert_has_no_stream "messages"
    assert_has_no_stream_for User.find(42)
    

    Sebastian Pöll, Junichi Sato

Please check 7-1-stable for previous changes.