File Coverage

blib/lib/Cfn/Resource/AWS/Serverless/StateMachine.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 21 23 91.3


line stmt bran cond sub pod time code
1 1     1   666 use Moose::Util::TypeConstraints;
  1         5  
  1         12  
2              
3             coerce 'Cfn::Resource::Properties::AWS::Serverless::StateMachine',
4             from 'HashRef',
5             via { Cfn::Resource::Properties::AWS::Serverless::StateMachine->new(%$_) };
6              
7             package Cfn::Resource::AWS::Serverless::StateMachine {
8 1     1   2110 use Moose;
  1         4  
  1         8  
9             extends 'Cfn::Resource';
10             has Properties => ( isa => 'Cfn::Resource::Properties::AWS::Serverless::StateMachine', is => 'rw', coerce => 1 );
11              
12             sub supported_regions {
13 1     1 0 979 require Cfn::Resource::AWS::Lambda::Function;
14 1         9 Cfn::Resource::AWS::Lambda::Function->supported_regions;
15             }
16              
17             sub AttributeList {
18 1     1 0 4 ['Name']
19             }
20             }
21              
22             package Cfn::Resource::Properties::AWS::Serverless::StateMachine {
23 1     1   7088 use Moose;
  1         3  
  1         4  
24 1     1   6651 use MooseX::StrictConstructor;
  1         3  
  1         10  
25             extends 'Cfn::Resource::Properties';
26              
27             has Definition => ( isa => 'Cfn::Value', is => 'rw', coerce => 1);
28             has DefinitionSubstitutions => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
29             has DefinitionUri => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
30             has Events => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
31             has Logging => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
32             has Domain => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
33             has Logging => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
34             has Name => ( isa => 'Cfn::Value::String', is => 'rw', coerce => 1 );
35             has Policies => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
36             has Role => ( isa => 'Cfn::Value::String', is => 'rw', coerce => 1 );
37             has Tags => ( isa => 'Cfn::Value', is => 'rw', coerce => 1 );
38             has Type => ( isa => 'Cfn::Value::String', is => 'rw', coerce => 1);
39             }
40              
41             1;