Skip to content

Commit 200fc6c

Browse files
committed
add :nocov: to unused
1 parent 9683f91 commit 200fc6c

File tree

6 files changed

+13
-0
lines changed

6 files changed

+13
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# frozen_string_literal: true
22

3+
# :nocov:
34
module ApplicationCable
45
class Channel < ActionCable::Channel::Base
56
end
67
end
8+
# :nocov:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# frozen_string_literal: true
22

3+
# :nocov:
34
module ApplicationCable
45
class Connection < ActionCable::Connection::Base
56
end
67
end
8+
# :nocov:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# frozen_string_literal: true
22

3+
# :nocov:
34
module Types
45
# Base class for all graphql input objects
56
class BaseInputObject < GraphQL::Schema::InputObject
67
end
78
end
9+
# :nocov:

app/graphql/types/user_input_type.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# frozen_string_literal: true
22

3+
# :nocov:
34
module Types
45
# Input type for user
56
class UserInputType < Types::BaseInputObject
@@ -11,3 +12,4 @@ class UserInputType < Types::BaseInputObject
1112
argument :password_confirmation, String, 'Password confirmation', required: true
1213
end
1314
end
15+
# :nocov:

app/jobs/application_job.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

33
# Base class for all background jobs
4+
# :nocov:
45
class ApplicationJob < ActiveJob::Base
56
end
7+
# :nocov:

app/mailers/application_mailer.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# frozen_string_literal: true
22

33
# Base class for all application mailer
4+
# :nocov:
45
class ApplicationMailer < ActionMailer::Base
56
default from: ENV['DEVISE_MAILER_FROM']
67
layout 'mailer'
78
end
9+
# :nocov:
10+

0 commit comments

Comments
 (0)