File Coverage

blib/lib/Data/Fake.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 1     1   68016 use 5.008001;
  1         10  
2 1     1   5 use strict;
  1         1  
  1         17  
3 1     1   4 use warnings;
  1         1  
  1         45  
4              
5             package Data::Fake;
6             # ABSTRACT: Declaratively generate fake structured data for testing
7              
8             our $VERSION = '0.004';
9              
10 1     1   386 use Import::Into;
  1         2119  
  1         91  
11              
12             sub import {
13 6     6   619 my $class = shift;
14 6         15 for my $m (@_) {
15 6         13 my $module = "Data::Fake::$m";
16 6         27 $module->import::into( scalar caller );
17             }
18             }
19              
20             1;
21              
22              
23             # vim: ts=4 sts=4 sw=4 et tw=75:
24              
25             __END__