push
0 of 1 new or added line in 1 file covered. (0.0%)
1529 existing lines in 63 files now uncovered.7 of 1711 relevant lines covered (0.41%)
0.0 hits per line
1 |
# this is a basic notification service which uses a filesystem folder to handle notifications
|
|
2 |
|
|
UNCOV
3
|
module DispatchRider |
× |
UNCOV
4
|
module NotificationServices |
× |
UNCOV
5
|
class FileSystem < Base |
× |
UNCOV
6
|
def notifier_builder |
× |
UNCOV
7
|
Notifier
|
× |
UNCOV
8
|
end
|
× |
9 |
|
|
UNCOV
10
|
def channel_registrar_builder |
× |
UNCOV
11
|
DispatchRider::Registrars::FileSystemChannel |
× |
UNCOV
12
|
end
|
× |
13 |
|
|
UNCOV
14
|
def channel(name) |
× |
UNCOV
15
|
notifier.channel(self.fetch(name))
|
× |
UNCOV
16
|
end
|
× |
UNCOV
17
|
end
|
× |
UNCOV
18
|
end
|
× |
UNCOV
19
|
end
|
× |
20 |
|
|
UNCOV
21
|
require 'dispatch-rider/notification_services/file_system/channel'
|
× |
UNCOV
22
|
require 'dispatch-rider/notification_services/file_system/notifier'
|
× |