11 lines
190 B
Ruby
11 lines
190 B
Ruby
# frozen_string_literal: true
|
|
require 'test_helper'
|
|
|
|
module ApplicationCable
|
|
class ChannelTest < ActiveSupport::TestCase
|
|
test 'should exists' do
|
|
assert Channel
|
|
end
|
|
end
|
|
end
|