rails--rails/actioncable/test/channel/naming_test.rb

13 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