File Coverage

blib/lib/App/Rgit/Policy/Keep.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 19 89.4


line stmt bran cond sub pod time code
1             package App::Rgit::Policy::Keep;
2              
3 1     1   998 use strict;
  1         3  
  1         37  
4 1     1   5 use warnings;
  1         2  
  1         27  
5              
6 1     1   5 use App::Rgit::Utils qw/:codes/;
  1         41  
  1         105  
7              
8 1     1   5 use base qw/App::Rgit::Policy/;
  1         2  
  1         122  
9              
10             =head1 NAME
11              
12             App::Rgit::Policy::Keep - A policy that ignores errors.
13              
14             =head1 VERSION
15              
16             Version 0.08
17              
18             =cut
19              
20             our $VERSION = '0.08';
21              
22             =head1 DESCRIPTION
23              
24             This policy always proceed to the next repository even when an error occurs.
25              
26             =head1 METHODS
27              
28             This class inherits from L.
29              
30             It implements :
31              
32             =head2 C
33              
34             =cut
35              
36 0     0 1   sub handle { NEXT }
37              
38             =head1 SEE ALSO
39              
40             L.
41              
42             L.
43              
44             =head1 AUTHOR
45              
46             Vincent Pit, C<< >>, L.
47              
48             You can contact me by mail or on C (vincent).
49              
50             =head1 BUGS
51              
52             Please report any bugs or feature requests to C, or through the web interface at L.
53             I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
54              
55             =head1 SUPPORT
56              
57             You can find documentation for this module with the perldoc command.
58              
59             perldoc App::Rgit::Policy::Keep
60              
61             =head1 COPYRIGHT & LICENSE
62              
63             Copyright 2008,2009,2010 Vincent Pit, all rights reserved.
64              
65             This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
66              
67             =cut
68              
69             1; # End of App::Rgit::Policy::Keep