File Coverage

blib/lib/Cogit/Actor.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Cogit::Actor;
2             $Cogit::Actor::VERSION = '0.001001';
3 4     4   15 use Moo;
  4         4  
  4         25  
4 4     4   7397 use MooX::Types::MooseLike::Base 'Str';
  4         6  
  4         162  
5 4     4   15 use namespace::clean;
  4         4  
  4         30  
6              
7             has name => (
8             is => 'ro',
9             isa => Str,
10             required => 1,
11             );
12              
13             has email => (
14             is => 'ro',
15             isa => Str,
16             required => 1,
17             );
18              
19             1;
20              
21             __END__
22              
23             =pod
24              
25             =encoding UTF-8
26              
27             =head1 NAME
28              
29             Cogit::Actor
30              
31             =head1 VERSION
32              
33             version 0.001001
34              
35             =head1 AUTHOR
36              
37             Arthur Axel "fREW" Schmidt <cogit@afoolishmanifesto.com>
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             This software is copyright (c) 2017 by Arthur Axel "fREW" Schmidt.
42              
43             This is free software; you can redistribute it and/or modify it under
44             the same terms as the Perl 5 programming language system itself.
45              
46             =cut