File Coverage

blib/lib/zim.pm
Criterion Covered Total %
statement 2 2 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 3 3 100.0


line stmt bran cond sub pod time code
1              
2             BEGIN {
3 1     1   1016 require Importer::Zim;
4 1         62 *zim:: = *Importer::Zim::;
5             }
6              
7             package zim;
8             $zim::VERSION = '0.9.2';
9             # ABSTRACT: Import functions à la Invader Zim
10              
11             1;
12              
13             #pod =encoding utf8
14             #pod
15             #pod =head1 SYNOPSIS
16             #pod
17             #pod use zim 'Scalar::Util' => 'blessed';
18             #pod use zim 'Scalar::Util' => 'blessed' => { -as => 'typeof' };
19             #pod
20             #pod use zim 'Mango::BSON' => ':bson';
21             #pod
22             #pod use zim 'Foo' => { -version => '3.0' } => 'foo';
23             #pod
24             #pod use zim 'Krazy::Taco' => qw(tacos burritos poop);
25             #pod
26             #pod =head1 DESCRIPTION
27             #pod
28             #pod "The rightful order has been restored."
29             #pod – Gaz
30             #pod
31             #pod L is an alias to L.
32             #pod
33             #pod =cut
34              
35             __END__