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   67881 use 5.008001;
  1         14  
2 1     1   6 use strict;
  1         2  
  1         22  
3 1     1   5 use warnings;
  1         1  
  1         63  
4              
5             package Data::Fake;
6             # ABSTRACT: Declaratively generate fake structured data for testing
7              
8             our $VERSION = '0.005';
9              
10 1     1   469 use Import::Into 1.002005;
  1         2744  
  1         85  
11              
12             sub import {
13 6     6   665 my $class = shift;
14 6         17 for my $m (@_) {
15 6         14 my $module = "Data::Fake::$m";
16 6         35 $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__