Reading database from /home/pjcj/g/perl/dev/Devel-Cover-0.3209/cover_db


------------------------------------------ ------ ------ ------ ------ ------
File                                         stmt branch   cond    sub  total
------------------------------------------ ------ ------ ------ ------ ------
tests/Module_import.pm                       0.00    n/a    n/a   0.00   0.00
tests/module_import                        100.00    n/a    n/a    n/a 100.00
Total                                       50.00    n/a    n/a   0.00  33.33
------------------------------------------ ------ ------ ------ ------ ------


tests/Module_import.pm

line  err   stmt branch   cond    sub   code
1                                       # Copyright 2002-2004, Paul Johnson (pjcj@cpan.org)
2                                       
3                                       # This software is free.  It is licensed under the same terms as Perl itself.
4                                       
5                                       # The latest version of this software should be available from my homepage:
6                                       # http://www.pjcj.net
7                                       
8                                       package Module_import;
9                                       
10                                      sub import
11                                      {
12    ***      0                    0       print "Module_import\n";
13                                      }
14                                      
15                                      1


Uncovered Subroutines
---------------------

Subroutine Location                 
---------- -------------------------
import     tests/Module_import.pm:12


tests/module_import

line  err   stmt branch   cond    sub   code
1                                       #!/usr/bin/perl
2                                       
3                                       # Copyright 2002-2004, Paul Johnson (pjcj@cpan.org)
4                                       
5                                       # This software is free.  It is licensed under the same terms as Perl itself.
6                                       
7                                       # The latest version of this software should be available from my homepage:
8                                       # http://www.pjcj.net
9                                       
10                                      BEGIN { push @INC, "tests" }
11                                      
12             1                        use Module_import;