mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
d97f1670bd
We have defined `ActionCable::TestCase` in `actioncable/test/test_helper.rb` that we can use in order to prevent code duplication and build common interface for actioncable's test.
12 lines
291 B
Ruby
12 lines
291 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "test_helper"
|
|
|
|
class ActionCable::Channel::NamingTest < ActionCable::TestCase
|
|
class ChatChannel < ActionCable::Channel::Base
|
|
end
|
|
|
|
test "channel_name" do
|
|
assert_equal "action_cable:channel:naming_test:chat", ChatChannel.channel_name
|
|
end
|
|
end
|