File Coverage

blib/lib/CPAN/Testers/Fact/PerlConfig.pm
Criterion Covered Total %
statement 15 20 75.0
branch n/a
condition n/a
subroutine 5 8 62.5
pod 2 3 66.6
total 22 31 70.9


line stmt bran cond sub pod time code
1 1     1   1353 use 5.006;
  1         3  
  1         44  
2 1     1   5 use strict;
  1         2  
  1         32  
3 1     1   4 use warnings;
  1         91  
  1         45  
4              
5             package CPAN::Testers::Fact::PerlConfig;
6             # ABSTRACT: Perl build and configuration information for a CPAN Testers report
7             our $VERSION = '1.999002'; # VERSION
8              
9 1     1   5 use Carp ();
  1         2  
  1         26  
10              
11 1     1   4 use Metabase::Fact::Hash 0.016;
  1         18  
  1         157  
12             our @ISA = qw/Metabase::Fact::Hash/;
13              
14 0     0 0   sub required_keys { return qw/build config/ }
15              
16             # XXX replace this with whatever Tux says is useful -- dagolden, 2009-03-30
17             sub content_metadata {
18 0     0 1   my ($self) = @_;
19 0           my $content = $self->content;
20             return {
21 0           osname => $content->{config}{osname},
22             archname => $content->{config}{archname},
23             version => $content->{config}{version},
24             };
25             }
26              
27             sub content_metadata_types {
28             return {
29 0     0 1   osname => '//str',
30             archname => '//str',
31             version => '//str',
32             };
33             }
34              
35             1;
36              
37             __END__