File Coverage

blib/lib/Devel/PerlySense/Project/Unknown.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 1 1 100.0
total 27 27 100.0


line stmt bran cond sub pod time code
1             =head1 NAME
2              
3             Devel::PerlySense::Project::Unknown - A Project null object.
4              
5             =head1 SYNOPSIS
6              
7              
8              
9              
10             =head1 DESCRIPTION
11              
12             A Project::Unknown indicates the lack of a project being defined.
13              
14             =cut
15              
16              
17              
18              
19              
20             package Devel::PerlySense::Project::Unknown;
21             $Devel::PerlySense::Project::Unknown::VERSION = '0.0217';
22 68     68   243 use base "Devel::PerlySense::Project";
  68         97  
  68         395  
23              
24              
25              
26              
27              
28              
29 68     68   16490 use strict;
  68         87  
  68         1146  
30 68     68   198 use warnings;
  68         79  
  68         1406  
31 68     68   216 use Carp;
  68         74  
  68         2908  
32 68     68   217 use Data::Dumper;
  68         77  
  68         1990  
33 68     68   217 use utf8;
  68         85  
  68         346  
34              
35              
36              
37              
38              
39             =head1 PROPERTIES
40              
41             =head2 dirProject
42              
43             The effective project root dir.
44              
45             Readonly.
46              
47             =cut
48             sub dirProject {
49 105     105 1 841 return "";
50             }
51              
52              
53              
54              
55              
56             1;
57              
58              
59              
60              
61              
62             __END__
63              
64             =encoding utf8
65              
66             =head1 AUTHOR
67              
68             Johan Lindstrom, C<< <johanl@cpan.org> >>
69              
70             =head1 BUGS
71              
72             Please report any bugs or feature requests to
73             C<bug-devel-perlysense@rt.cpan.org>, or through the web interface at
74             L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel-PerlySense>.
75             I will be notified, and then you'll automatically be notified of progress on
76             your bug as I make changes.
77              
78             =head1 ACKNOWLEDGEMENTS
79              
80             =head1 COPYRIGHT & LICENSE
81              
82             Copyright 2005 Johan Lindstrom, All Rights Reserved.
83              
84             This program is free software; you can redistribute it and/or modify it
85             under the same terms as Perl itself.
86              
87             =cut