File Coverage

blib/lib/Types/Stenciller.pm
Criterion Covered Total %
statement 55 55 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 61 61 100.0


line stmt bran cond sub pod time code
1 5     5   92 use 5.14.0;
  5         13  
  5         196  
2 5     5   22 use warnings;
  5         5  
  5         208  
3              
4 5     5   19 use Moops;
  5         6  
  5         34  
5              
6             our $VERSION = '0.1212'; # VERSION:
7             # PODNAME: Types::Stenciller
8             # ABSTRACT: Types for Stenciller
9              
10 5     5   657771 library Types::Stenciller
  5     5   126  
  5     5   35  
  5         15  
  5         338  
  5         2572  
  5         8176  
  5         18  
  5         7156  
  5         7  
  5         47  
  5         289  
  5         6  
  5         254  
  5         23  
  5         5  
  5         401  
  5         131  
  5         21  
  5         6  
  5         59  
  5         17737  
  5         15195  
  5         38  
  5         371725  
  5         15  
  5         153  
  5         21  
  5         8  
  5         141  
  5         16  
  5         7  
  5         169  
  5         20  
  5         7  
  5         527  
  5         24  
  5         9  
  5         56  
  5         3900  
  5         21794  
  5         43  
  5         10877  
  5         231871  
11              
12             extends Types::Standard, Types::Path::Tiny
13              
14             {
15              
16 5         59 class_type Stenciller => { class => 'Stenciller::Wrap' };
17 5         3741 class_type Stencil => { class => 'Stenciller::Stencil' };
18              
19             }
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Types::Stenciller - Types for Stenciller
32              
33             =head1 VERSION
34              
35             Version 0.1212, released 2015-02-10.
36              
37              
38              
39             =head1 SYNOPSIS
40              
41             use Types::Stenciller -types;
42              
43             =head1 DESCRIPTION
44              
45             Defines a couple of types used in the C<Stenciller> namespace.
46              
47             =head1 TYPES
48              
49             =over 4
50              
51             =item *
52              
53             C<Stenciller> is a L<Stenciller>
54              
55             =item *
56              
57             C<Stencil> is a L<Stenciller::Stencil>
58              
59             =back
60              
61             It also inherits from L<Types::Standard> and L<Types::Path::Tiny>.
62              
63             =head1 SOURCE
64              
65             L<https://github.com/Csson/p5-Stenciller>
66              
67             =head1 HOMEPAGE
68              
69             L<https://metacpan.org/release/Stenciller>
70              
71             =head1 AUTHOR
72              
73             Erik Carlsson <info@code301.com>
74              
75             =head1 COPYRIGHT AND LICENSE
76              
77             This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>.
78              
79             This is free software; you can redistribute it and/or modify it under
80             the same terms as the Perl 5 programming language system itself.
81              
82             =cut