github
62 of 69 new or added lines in 14 files covered. (89.86%)
9 existing lines in 3 files now uncovered.3580 of 3651 relevant lines covered (98.06%)
75597.56 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
|