aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/test_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actioncable/test/test_helper_test.rb')
-rw-r--r--actioncable/test/test_helper_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/actioncable/test/test_helper_test.rb b/actioncable/test/test_helper_test.rb
index f82adb9c8f..90e3dbf01f 100644
--- a/actioncable/test/test_helper_test.rb
+++ b/actioncable/test/test_helper_test.rb
@@ -62,6 +62,16 @@ class TransmissionsTest < ActionCable::TestCase
assert_match(/1 .* but 2/, error.message)
end
+
+ def test_assert_no_broadcasts_failure
+ error = assert_raises Minitest::Assertion do
+ assert_no_broadcasts "test" do
+ ActionCable.server.broadcast "test", "hello"
+ end
+ end
+
+ assert_match(/0 .* but 1/, error.message)
+ end
end
class TransmitedDataTest < ActionCable::TestCase