push
circleci
0 of 33 new or added lines in 1 file covered. (0.0%)
9374 existing lines in 213 files now uncovered.47 of 9753 relevant lines covered (0.48%)
0.01 hits per line
| 1 |
# frozen_string_literal: true
|
|
|
UNCOV
2
|
module Requests |
× |
|
UNCOV
3
|
module ServiceEligibility |
× |
|
UNCOV
4
|
module Recap |
× |
| 5 |
# Abstract class for other recap classes to inherit from
|
|
|
UNCOV
6
|
class AbstractRecap |
× |
|
UNCOV
7
|
def initialize(requestable:, user:) |
× |
|
UNCOV
8
|
@requestable = requestable
|
× |
|
UNCOV
9
|
@user = user
|
× |
|
UNCOV
10
|
end
|
× |
| 11 |
|
|
|
UNCOV
12
|
def to_s |
× |
| 13 |
raise "Please implement to_s in the subclass"
|
× |
|
UNCOV
14
|
end
|
× |
| 15 |
|
|
|
UNCOV
16
|
protected |
× |
| 17 |
|
|
|
UNCOV
18
|
def requestable_eligible? |
× |
| 19 |
raise "Please implement requestable_eligible? in the subclass"
|
× |
|
UNCOV
20
|
end
|
× |
| 21 |
|
|
|
UNCOV
22
|
def user_eligible? |
× |
|
UNCOV
23
|
user.cas_provider? || user.alma_provider? |
× |
|
UNCOV
24
|
end
|
× |
| 25 |
|
|
|
UNCOV
26
|
attr_reader :requestable, :user |
× |
|
UNCOV
27
|
end
|
× |
|
UNCOV
28
|
end
|
× |
|
UNCOV
29
|
end
|
× |
|
UNCOV
30
|
end
|
× |