| blib/lib/KelpX/AppBuilder/Object.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 0 | 5 | 0.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 0 | 2 | 0.0 |
| pod | 0 | 2 | 0.0 |
| total | 0 | 9 | 0.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package KelpX::AppBuilder::Object; | ||||||
| 2 | |||||||
| 3 | 0 | 0 | 0 | sub new { return bless { routes => $_[1] }, 'KelpX::AppBuilder::Object'; } | |||
| 4 | |||||||
| 5 | sub apps { | ||||||
| 6 | 0 | 0 | 0 | my ($self, @apps) = @_; | |||
| 7 | 0 | my $routes = $self->{routes}; | |||||
| 8 | 0 | for (@apps) { | |||||
| 9 | 0 | KelpX::AppBuilder->new($_)->add_maps($routes); | |||||
| 10 | } | ||||||
| 11 | } | ||||||
| 12 | |||||||
| 13 | 1; | ||||||
| 14 | __END__ |