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   71629 use 5.008001;
  1         15  
2 1     1   7 use strict;
  1         1  
  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.006';
9              
10 1     1   535 use Import::Into 1.002005;
  1         2982  
  1         86  
11              
12             sub import {
13 6     6   778 my $class = shift;
14 6         16 for my $m (@_) {
15 6         15 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__