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
|
class StatusSerializer < ApplicationSerializer |
× |
4 |
|
|
UNCOV
5
|
swagger_schema('Status') do |
× |
UNCOV
6
|
property :id, type: :string |
× |
UNCOV
7
|
property :type, type: :string |
× |
UNCOV
8
|
property :attributes do |
× |
UNCOV
9
|
property :api, type: :boolean |
× |
UNCOV
10
|
property :database, type: :boolean |
× |
UNCOV
11
|
property :file_system, type: :boolean |
× |
UNCOV
12
|
end
|
× |
UNCOV
13
|
end
|
× |
14 |
|
|
UNCOV
15
|
attributes :id, :api, :database, :file_system |
× |
16 |
|
|
UNCOV
17
|
end
|
× |