github
0 of 18 new or added lines in 4 files covered. (0.0%)
3922 existing lines in 105 files now uncovered.0 of 4086 relevant lines covered (0.0%)
0.0 hits per line
1 |
# frozen_string_literal: true
|
|
2 |
|
|
UNCOV
3
|
module Auth |
× |
UNCOV
4
|
class Base |
× |
5 |
|
|
UNCOV
6
|
attr_reader :request
|
× |
7 |
|
|
UNCOV
8
|
def initialize(request) |
× |
UNCOV
9
|
@request = request
|
× |
UNCOV
10
|
end
|
× |
11 |
|
|
UNCOV
12
|
def fetch_user |
× |
13 |
# implement in subclass
|
|
UNCOV
14
|
end
|
× |
15 |
|
|
UNCOV
16
|
end
|
× |
UNCOV
17
|
end
|
× |