circleci
1 of 2 new or added lines in 1 file covered. (50.0%)
2136 existing lines in 138 files now uncovered.3967 of 6302 relevant lines covered (62.95%)
75.79 hits per line
1 |
# frozen_string_literal: true
|
|
2 |
|
|
3 |
class EventProcessor |
1✔ |
4 |
class UnknownEvent < Processor |
1✔ |
5 |
attr_reader :event
|
1✔ |
6 |
def initialize(event) |
1✔ |
UNCOV
7
|
@event = event
|
× |
8 |
end
|
|
9 |
|
|
10 |
def process |
1✔ |
UNCOV
11
|
Rails.logger.info("Unable to process event type #{event_type}") |
× |
UNCOV
12
|
false
|
× |
13 |
end
|
|
14 |
end
|
|
15 |
end
|