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