File Coverage

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