circleci
0 of 1 new or added line in 1 file covered. (0.0%)
2381 existing lines in 150 files now uncovered.3599 of 6198 relevant lines covered (58.07%)
5.05 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
|