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
|
|
| 2 |
|
|
| 3 |
# This component is responsible for displaying a group
|
|
| 4 |
# of physical holdings
|
|
|
UNCOV
5
|
class Holdings::PhysicalHoldingGroupComponent < ViewComponent::Base |
× |
| 6 |
# :reek:BooleanParameter
|
|
|
UNCOV
7
|
def initialize(group:, adapter:, open: false) |
× |
|
UNCOV
8
|
@group = group
|
× |
|
UNCOV
9
|
@adapter = adapter
|
× |
|
UNCOV
10
|
@open = open
|
× |
|
UNCOV
11
|
end
|
× |
| 12 |
|
|
|
UNCOV
13
|
private |
× |
| 14 |
|
|
|
UNCOV
15
|
attr_reader :adapter, :group, :open |
× |
|
UNCOV
16
|
end
|
× |