blib/lib/BusyBird/Watcher/Aggregator.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 17 | 17 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 6 | 6 | 100.0 |
pod | 1 | 1 | 100.0 |
total | 24 | 24 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package BusyBird::Watcher::Aggregator; | ||||||
2 | 11 | 11 | 125 | use v5.8.0; | |||
11 | 30 | ||||||
11 | 495 | ||||||
3 | 11 | 11 | 48 | use strict; | |||
11 | 20 | ||||||
11 | 338 | ||||||
4 | 11 | 11 | 54 | use warnings; | |||
11 | 18 | ||||||
11 | 424 | ||||||
5 | 11 | 11 | 5936 | use Async::Selector 1.03; | |||
11 | 28022 | ||||||
11 | 387 | ||||||
6 | 11 | 11 | 88 | use parent qw(BusyBird::Watcher Async::Selector::Aggregator); | |||
11 | 16 | ||||||
11 | 91 | ||||||
7 | |||||||
8 | sub new { | ||||||
9 | 185 | 185 | 1 | 274 | my ($class, @args) = @_; | ||
10 | 185 | 779 | return $class->SUPER::new(@args); | ||||
11 | } | ||||||
12 | |||||||
13 | 1; |