File Coverage

lib/Search/QS/Options/Start.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Search::QS::Options::Start;
2             $Search::QS::Options::Start::VERSION = '0.04';
3 4     4   25 use Moose;
  4         14  
  4         24  
4             # ABSTRACT: The Start option object
5              
6              
7             extends 'Search::QS::Options::Int';
8              
9             has '+name' => ( default => 'start' );
10             has '+value' => ( isa => 'Int');
11             has '+default' => ( default => 0);
12              
13              
14 4     4   21981 no Moose;
  4         9  
  4         33  
15             __PACKAGE__->meta->make_immutable;
16              
17             1;
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Search::QS::Options::Start - The Start option object
28              
29             =head1 VERSION
30              
31             version 0.04
32              
33             =head1 DESCRIPTION
34              
35             A subclass of L<Seach::QS::Options::Int> incapsulate start value
36              
37             =head1 SEE ALSO
38              
39             L<Seach::QS::Options::Int>
40              
41             =head1 AUTHOR
42              
43             Emiliano Bruni <info@ebruni.it>
44              
45             =head1 COPYRIGHT AND LICENSE
46              
47             This software is copyright (c) 2019 by Emiliano Bruni.
48              
49             This is free software; you can redistribute it and/or modify it under
50             the same terms as the Perl 5 programming language system itself.
51              
52             =cut