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
UNCOV
1
|
module DispatchRider |
× |
UNCOV
2
|
class Publisher::Configuration::Destination |
× |
UNCOV
3
|
def initialize(name, attributes={}) |
× |
UNCOV
4
|
@name = name
|
× |
5 |
|
|
UNCOV
6
|
attributes = attributes.with_indifferent_access |
× |
UNCOV
7
|
@service = attributes[:service] |
× |
UNCOV
8
|
@channel = attributes[:channel] |
× |
UNCOV
9
|
@options = attributes[:options] |
× |
UNCOV
10
|
end
|
× |
11 |
|
|
UNCOV
12
|
attr_reader :name, :service, :channel, :options |
× |
13 |
|
|
UNCOV
14
|
def ==(other) |
× |
UNCOV
15
|
self.name == other.name &&
|
× |
UNCOV
16
|
self.service == other.service &&
|
× |
UNCOV
17
|
self.channel == other.channel &&
|
× |
UNCOV
18
|
self.options == other.options
|
× |
UNCOV
19
|
end
|
× |
UNCOV
20
|
end
|
× |
UNCOV
21
|
end
|
× |