Skip to content

Commit ec49d0e

Browse files
committed
Merge pull request #2680 from Vagab/allow-using-symbol-in-broadcast-to-matcher
Allow to use symbols for broadcasting target
1 parent d21484b commit ec49d0e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

lib/rspec/rails/matchers/action_cable/have_broadcasted_to.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,11 @@ def from_channel(channel)
9696
private
9797

9898
def stream
99-
@stream ||= if @target.is_a?(String)
99+
@stream ||= case @target
100+
when String
100101
@target
102+
when Symbol
103+
@target.to_s
101104
else
102105
check_channel_presence
103106
@channel.broadcasting_for(@target)

spec/rspec/rails/matchers/action_cable/have_broadcasted_to_spec.rb

+6
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ def broadcast(stream, msg)
5050
}.to have_broadcasted_to('stream')
5151
end
5252

53+
it "passes when using symbol target" do
54+
expect {
55+
broadcast(:stream, 'hello')
56+
}.to have_broadcasted_to(:stream)
57+
end
58+
5359
it "passes when using alias" do
5460
expect {
5561
broadcast('stream', 'hello')

0 commit comments

Comments
 (0)