File Coverage

blib/lib/WebService/ValidSign/Object/Ceremony.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package WebService::ValidSign::Object::Ceremony;
2             our $VERSION = '0.003';
3 2     2   15 use Moo;
  2         5  
  2         12  
4             extends 'WebService::ValidSign::Object';
5              
6             # ABSTRACT: A ceremony object
7              
8 2     2   669 use Types::Standard qw(Bool);
  2         4  
  2         13  
9              
10             has '+type' => ( required => 0 );
11              
12             has in_person => (
13             is => 'rw',
14             isa => Bool,
15             default => 0,
16             );
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             __END__
21              
22             =pod
23              
24             =encoding UTF-8
25              
26             =head1 NAME
27              
28             WebService::ValidSign::Object::Ceremony - A ceremony object
29              
30             =head1 VERSION
31              
32             version 0.003
33              
34             =head1 AUTHOR
35              
36             Wesley Schwengle <waterkip@cpan.org>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is Copyright (c) 2019 by Wesley Schwengle.
41              
42             This is free software, licensed under:
43              
44             The (three-clause) BSD License
45              
46             =cut