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