From 9884748cf965d38b8c8a8b9a9b963a7f135e138a Mon Sep 17 00:00:00 2001 From: Mark Moser Date: Wed, 14 Sep 2016 17:38:21 -0500 Subject: [PATCH] ...because I'm a slave to the coverage report --- test/channels/application_cable/channel_test.rb | 10 ++++++++++ test/channels/application_cable/connection_test.rb | 10 ++++++++++ test/jobs/application_job_test.rb | 8 ++++++++ 3 files changed, 28 insertions(+) create mode 100644 test/channels/application_cable/channel_test.rb create mode 100644 test/channels/application_cable/connection_test.rb create mode 100644 test/jobs/application_job_test.rb 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