File Coverage

blib/lib/Types/Stenciller.pm
Criterion Covered Total %
statement 57 57 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 64 64 100.0


line stmt bran cond sub pod time code
1 7     7   154 use 5.14.0;
  7         25  
2 7     7   35 use strict;
  7         11  
  7         178  
3 7     7   35 use warnings;
  7         12  
  7         213  
4              
5 7     7   35 use Moops;
  7         14  
  7         56  
6              
7             # PODNAME: Types::Stenciller
8             # ABSTRACT: Types for Stenciller
9              
10 7     7   1238610 library Types::Stenciller
  7     7   238  
  7     7   58  
  7         19  
  7         454  
  7         5231  
  7         16312  
  7         30  
  7         13989  
  7         15  
  7         57  
  7         432  
  7         13  
  7         373  
  7         37  
  7         15  
  7         798  
  7         252  
  7         37  
  7         13  
  7         81  
  7         34358  
  7         30574  
  7         51  
  7         724401  
  7         28  
  7         38  
  7         15  
  7         185  
  7         37  
  7         15  
  7         285  
  7         33  
  7         13  
  7         809  
  7         38  
  7         15  
  7         74  
  7         7902  
  7         42134  
  7         73  
  7         21560  
  7         403869  
11             extends Types::Standard, Types::Path::Tiny
12              
13             {
14              
15 7         80 our $VERSION = '0.1302'; # VERSION:
16              
17 7         41 class_type Stenciller => { class => 'Stenciller::Wrap' };
18 7         5946 class_type Stencil => { class => 'Stenciller::Stencil' };
19              
20             }
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             Types::Stenciller - Types for Stenciller
33              
34             =head1 VERSION
35              
36             Version 0.1302, released 2015-11-28.
37              
38              
39              
40             =head1 SYNOPSIS
41              
42             use Types::Stenciller -types;
43              
44             =head1 DESCRIPTION
45              
46             Defines a couple of types used in the C<Stenciller> namespace.
47              
48             =head1 TYPES
49              
50             =over 4
51              
52             =item *
53              
54             C<Stenciller> is a L<Stenciller>
55              
56             =item *
57              
58             C<Stencil> is a L<Stenciller::Stencil>
59              
60             =back
61              
62             It also inherits from L<Types::Standard> and L<Types::Path::Tiny>.
63              
64             =head1 SOURCE
65              
66             L<https://github.com/Csson/p5-Stenciller>
67              
68             =head1 HOMEPAGE
69              
70             L<https://metacpan.org/release/Stenciller>
71              
72             =head1 AUTHOR
73              
74             Erik Carlsson <info@code301.com>
75              
76             =head1 COPYRIGHT AND LICENSE
77              
78             This software is copyright (c) 2015 by Erik Carlsson.
79              
80             This is free software; you can redistribute it and/or modify it under
81             the same terms as the Perl 5 programming language system itself.
82              
83             =cut