File: | t/inc/Tester.pm |
Coverage: | 50.0% |
line | stmt | bran | cond | sub | time | code |
---|---|---|---|---|---|---|
1 | package Tester; | |||||
2 | 2 2 2 | 574 2 10 | use Moose; | |||
3 | ||||||
4 | has 'testattr1' => ( | |||||
5 | is => 'rw', | |||||
6 | isa => 'Str' | |||||
7 | ); | |||||
8 | ||||||
9 | has 'testattr2' => ( | |||||
10 | is => 'ro', | |||||
11 | isa => 'Num', | |||||
12 | documentation => 'This is a documentation option test. It is a string. With some L<links>' | |||||
13 | ); | |||||
14 | ||||||
15 | 0 | sub method1 { } | ||||
16 | ||||||
17 | 0 | sub _private_method { } | ||||
18 | ||||||
19 | __PACKAGE__->meta->make_immutable; | |||||
20 | ||||||
21 - 23 | =pod =cut | |||||
24 |