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 module tracks which classes inherit from the class that includes
|
|
2 |
# the module, and provides an accessor to it.
|
|
3 |
|
|
UNCOV
4
|
module DispatchRider |
× |
UNCOV
5
|
module Handlers |
× |
UNCOV
6
|
module InheritanceTracking |
× |
UNCOV
7
|
def inherited(subclass) |
× |
UNCOV
8
|
subclasses << subclass |
× |
UNCOV
9
|
super
|
× |
UNCOV
10
|
end
|
× |
11 |
|
|
UNCOV
12
|
def subclasses |
× |
UNCOV
13
|
@subclasses ||= Set.new |
× |
UNCOV
14
|
end
|
× |
UNCOV
15
|
end
|
× |
UNCOV
16
|
end
|
× |
UNCOV
17
|
end
|
× |