aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorVladimir Dementyev <dementiev.vm@gmail.com>2019-01-22 16:53:01 -0500
committerVladimir Dementyev <dementiev.vm@gmail.com>2019-01-22 16:53:01 -0500
commitcfe65cb478a44f19f3b4562cd1cf3c99d2cb930b (patch)
treea5dd8ad4b2f0d947161541508986c4c1bc5d025a /actioncable
parent513dd2cfdb98c01bce9759b29c48aa8b691f53d4 (diff)
downloadrails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.tar.gz
rails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.tar.bz2
rails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.zip
fix fixture syntax in cable docs and guides
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/lib/action_cable/channel/test_case.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/actioncable/lib/action_cable/channel/test_case.rb b/actioncable/lib/action_cable/channel/test_case.rb
index 19d6f1cccf..b05d51a61a 100644
--- a/actioncable/lib/action_cable/channel/test_case.rb
+++ b/actioncable/lib/action_cable/channel/test_case.rb
@@ -143,7 +143,7 @@ module ActionCable
# You need to set up your connection manually to provide values for the identifiers.
# To do this just use:
#
- # stub_connection(user: users[:john])
+ # stub_connection(user: users(:john))
#
# == Testing broadcasting
#
@@ -157,9 +157,9 @@ module ActionCable
# end
#
# def test_speak
- # subscribe room_id: rooms[:chat].id
+ # subscribe room_id: rooms(:chat).id
#
- # assert_broadcasts_on(rooms[:chat], text: "Hello, Rails!") do
+ # assert_broadcasts_on(rooms(:chat), text: "Hello, Rails!") do
# perform :speak, message: "Hello, Rails!"
# end
# end