blib/lib/App/WIoZ/Point.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 7 | 9 | 77.7 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 10 | 12 | 83.3 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 1222 | use strict; | |||
1 | 2 | ||||||
1 | 37 | ||||||
2 | 1 | 1 | 5 | use warnings; | |||
1 | 2 | ||||||
1 | 55 | ||||||
3 | package App::WIoZ::Point; | ||||||
4 | { | ||||||
5 | $App::WIoZ::Point::VERSION = '0.004'; | ||||||
6 | } | ||||||
7 | 1 | 1 | 454 | use Moose; | |||
0 | |||||||
0 | |||||||
8 | |||||||
9 | has ['x','y'] => ( | ||||||
10 | is => 'rw', isa => 'Int' | ||||||
11 | ); | ||||||
12 | |||||||
13 | 1; |