aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
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 /guides/source
parent513dd2cfdb98c01bce9759b29c48aa8b691f53d4 (diff)
downloadrails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.tar.gz
rails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.tar.bz2
rails-cfe65cb478a44f19f3b4562cd1cf3c99d2cb930b.zip
fix fixture syntax in cable docs and guides
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/testing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md
index fb78fa6d17..9516bba92e 100644
--- a/guides/source/testing.md
+++ b/guides/source/testing.md
@@ -1806,11 +1806,11 @@ require "test_helper"
class WebNotificationsChannelTest < ActionCable::Channel::TestCase
test "subscribes and stream for user" do
- stub_connection current_user: users[:john]
+ stub_connection current_user: users(:john)
subscribe
- assert_has_stream_for users[:john]
+ assert_has_stream_for users(:john)
end
end
```
@@ -1855,7 +1855,7 @@ class ChatRelayJobTest < ActiveJob::TestCase
include ActionCable::TestHelper
test "broadcast message to room" do
- room = rooms[:all]
+ room = rooms(:all)
assert_broadcast_on(ChatChannel.broadcasting_for(room), text: "Hi!") do
ChatRelayJob.perform_now(room, "Hi!")