github
42 of 42 new or added lines in 8 files covered. (100.0%)
29 existing lines in 11 files now uncovered.51710 of 52207 relevant lines covered (99.05%)
754.76 hits per line
| 1 |
# frozen_string_literal: true
|
|
| 2 |
|
|
| 3 |
class API2 |
3✔ |
| 4 |
# Error while executing query.
|
|
| 5 |
class QueryError < FatalError |
3✔ |
| 6 |
def initialize(error) |
3✔ |
|
UNCOV
7
|
super()
|
× |
|
UNCOV
8
|
args.merge!(error: error.to_s)
|
× |
| 9 |
end
|
|
| 10 |
end
|
|
| 11 |
end
|