File Coverage

blib/lib/Launcher/Cascade/ListOfStrings/Context.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 Launcher::Cascade::ListOfStrings::Context;
2              
3             =head1 NAME
4              
5             Launcher::Cascade::ListOfStrings::Context -
6              
7             =head1 SYNOPSIS
8              
9             =head1 DESCRIPTION
10              
11             =cut
12              
13 5     5   29 use strict;
  5         8  
  5         190  
14 5     5   27 use warnings;
  5         12  
  5         141  
15              
16 5     5   67 use base qw( Launcher::Cascade::ListOfStrings );
  5         469  
  5         2189  
17              
18             Launcher::Cascade::make_accessors_with_defaults
19             string_before => '-' x 0,
20             string_after => '-' x 0,
21             separator => q{},
22             preparator => sub { " $_" },
23             ;
24              
25             =head1 SEE ALSO
26              
27             =head1 AUTHOR
28              
29             Cédric Bouvier C<< >>
30              
31             =head1 COPYRIGHT & LICENSE
32              
33             Copyright (C) 2006 Cédric Bouvier, All Rights Reserved.
34              
35             This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
36              
37             =cut
38              
39             1; # end of Launcher::Cascade::ListOfStrings::Context