mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
87b3e226d6
This reverts commit3420a14590
, reversing changes made toafb66a5a59
.
10 lines
262 B
Ruby
10 lines
262 B
Ruby
require "test_helper"
|
|
|
|
class ActionCable::Channel::NamingTest < ActiveSupport::TestCase
|
|
class ChatChannel < ActionCable::Channel::Base
|
|
end
|
|
|
|
test "channel_name" do
|
|
assert_equal "action_cable:channel:naming_test:chat", ChatChannel.channel_name
|
|
end
|
|
end
|