File Coverage

blib/lib/Cfn/Resource/AWS/CloudFormation/WaitConditionHandle.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 1     1   612 use Moose::Util::TypeConstraints;
  1         3  
  1         11  
2              
3             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::WaitConditionHandle',
4             from 'HashRef',
5             via { Cfn::Resource::Properties::AWS::CloudFormation::WaitConditionHandle->new( %$_ ) };
6              
7             package Cfn::Resource::AWS::CloudFormation::WaitConditionHandle {
8 1     1   1984 use Moose;
  1         2  
  1         7  
9             extends 'Cfn::Resource';
10             has Properties => (isa => 'Cfn::Resource::Properties::AWS::CloudFormation::WaitConditionHandle', is => 'rw', coerce => 1, required => 1);
11             }
12              
13             package Cfn::Resource::Properties::AWS::CloudFormation::WaitConditionHandle {
14 1     1   6107 use Moose;
  1         2  
  1         5  
15 1     1   6852 use MooseX::StrictConstructor;
  1         3  
  1         11  
16             extends 'Cfn::Resource::Properties';
17             }
18              
19             1;