File Coverage

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 63     63   245 use base "Devel::PerlySense::Project";
  63         77  
  63         424  
22              
23              
24              
25              
26              
27              
28 63     63   18839 use strict;
  63         81  
  63         1767  
29 63     63   241 use warnings;
  63         71  
  63         1606  
30 63     63   218 use Carp;
  63         70  
  63         3441  
31 63     63   222 use Data::Dumper;
  63         100  
  63         2338  
32 63     63   234 use utf8;
  63         79  
  63         417  
33              
34              
35              
36              
37              
38             =head1 PROPERTIES
39              
40             =head2 dirProject
41              
42             The effective project root dir.
43              
44             Readonly.
45              
46             =cut
47             sub dirProject {
48 17     17 1 123 return "";
49             }
50              
51              
52              
53              
54              
55             1;
56              
57              
58              
59              
60              
61             __END__
62              
63             =encoding utf8
64              
65             =head1 AUTHOR
66              
67             Johan Lindström, C<< <johanl[ÄT]DarSerMan.com> >>
68              
69             =head1 BUGS
70              
71             Please report any bugs or feature requests to
72             C<bug-devel-perlysense@rt.cpan.org>, or through the web interface at
73             L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel-PerlySense>.
74             I will be notified, and then you'll automatically be notified of progress on
75             your bug as I make changes.
76              
77             =head1 ACKNOWLEDGEMENTS
78              
79             =head1 COPYRIGHT & LICENSE
80              
81             Copyright 2005 Johan Lindström, All Rights Reserved.
82              
83             This program is free software; you can redistribute it and/or modify it
84             under the same terms as Perl itself.
85              
86             =cut