diff --git a/test/channels/application_cable/channel_test.rb b/test/channels/application_cable/channel_test.rb new file mode 100644 index 0000000..d4e416b --- /dev/null +++ b/test/channels/application_cable/channel_test.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true +require 'test_helper' + +module ApplicationCable + class ChannelTest < ActiveSupport::TestCase + test 'should exists' do + assert Channel + end + end +end diff --git a/test/channels/application_cable/connection_test.rb b/test/channels/application_cable/connection_test.rb new file mode 100644 index 0000000..17e1590 --- /dev/null +++ b/test/channels/application_cable/connection_test.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true +require 'test_helper' + +module ApplicationCable + class ConnectionTest < ActiveSupport::TestCase + test 'should exists' do + assert Connection + end + end +end diff --git a/test/jobs/application_job_test.rb b/test/jobs/application_job_test.rb new file mode 100644 index 0000000..2de3271 --- /dev/null +++ b/test/jobs/application_job_test.rb @@ -0,0 +1,8 @@ +# frozen_string_literal: true +require 'test_helper' + +class ApplicationJobTest < ActiveSupport::TestCase + test 'should exists' do + assert ApplicationJob.new + end +end