Skip to content

Commit

Permalink
new file :o
Browse files Browse the repository at this point in the history
  • Loading branch information
grodowski committed Dec 12, 2024
1 parent 5a6860e commit 447d318
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/controllers/checks_controller.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
class ChecksController < ApplicationController
before_action :check_beta_cookie, only: :index

def index
@say = self.class.name
end

Check warning on line 6 in app/controllers/checks_controller.rb

View check run for this annotation

UndercoverCI / coverage

Untested instance method

Instance method `index` is missing coverage for line 5 (node coverage: 0.0).
Raw output
4:   def index hits: n/a
5:     @say = self.class.name hits: 0
6:   end hits: n/a

def bounce
@foo = "bar"
@foo = "baz"
@foo = "bob"
end

Check warning on line 12 in app/controllers/checks_controller.rb

View check run for this annotation

UndercoverCI / coverage

Untested instance method

Instance method `bounce` is missing coverage for lines 9..11 (node coverage: 0.0).
Raw output
 8:   def bounce hits: n/a
 9:     @foo = "bar" hits: 0
10:     @foo = "baz" hits: 0
11:     @foo = "bob" hits: 0
12:   end hits: n/a
end

0 comments on commit 447d318

Please sign in to comment.