...because I'm a slave to the coverage report

This commit is contained in:
Mark Moser 2016-09-14 17:38:21 -05:00
parent 54c6202b62
commit 9884748cf9
3 changed files with 28 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -0,0 +1,8 @@
# frozen_string_literal: true
require 'test_helper'
class ApplicationJobTest < ActiveSupport::TestCase
test 'should exists' do
assert ApplicationJob.new
end
end