github
58 of 63 new or added lines in 13 files covered. (92.06%)
9 existing lines in 3 files now uncovered.3578 of 3647 relevant lines covered (98.11%)
75684.01 hits per line
1 |
# frozen_string_literal: true
|
|
2 |
|
|
|
module Grape |
60✔ |
|
module ParamsBuilder |
60✔ |
|
class Base |
60✔ |
|
class << self |
60✔ |
|
def call(_params) |
60✔ |
NEW
|
raise NotImplementedError
|
× |
9 |
end
|
|
10 |
|
|
|
def inherited(klass) |
60✔ |
|
super
|
180✔ |
|
ParamsBuilder.register(klass)
|
180✔ |
14 |
end
|
|
15 |
end
|
|
16 |
end
|
|
17 |
end
|
|
18 |
end
|