blib/lib/HTML/Tag/Lang/it.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 9 | 9 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 3 | 3 | 100.0 |
pod | n/a | ||
total | 12 | 12 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package HTML::Tag::Lang::it; | ||||||
2 | 3 | 3 | 8744 | use strict; | |||
3 | 6 | ||||||
3 | 104 | ||||||
3 | 3 | 3 | 15 | use warnings; | |||
3 | 6 | ||||||
3 | 224 | ||||||
4 | our $VERSION = 0.02; | ||||||
5 | |||||||
6 | 3 | 3 | 73 | use base qw(Exporter); | |||
3 | 5 | ||||||
3 | 627 | ||||||
7 | our (@EXPORT_OK, %bool_descr,@month); | ||||||
8 | @EXPORT_OK = qw(%bool_descr @month); | ||||||
9 | |||||||
10 | %bool_descr = ( | ||||||
11 | 0 => 'No', | ||||||
12 | 1 => 'Si' | ||||||
13 | ); | ||||||
14 | |||||||
15 | @month = qw/Gennaio Febbraio Marzo Aprile Maggio Giugno Luglio Agosto | ||||||
16 | Settembre Ottobre Novembre Dicembre/; | ||||||
17 | |||||||
18 | 1; |