File Coverage

blib/lib/Mandel/Model/Field.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 3 3 100.0
total 13 13 100.0


line stmt bran cond sub pod time code
1             package Mandel::Model::Field;
2 26     26   186 use Mojo::Base -base;
  26         56  
  26         176  
3              
4 13     13 1 48 sub builder { shift->{builder} }
5 20     20 1 72 sub name { shift->{name} }
6 5     5 1 22 sub type_constraint { shift->{isa} }
7              
8             1;
9              
10             =encoding utf8
11              
12             =head1 NAME
13              
14             Mandel::Model::Field - Field meta object
15              
16             =head1 DESCRIPTION
17              
18             This class defines meta data for a L object.
19              
20             =head1 ATTRIBUTES
21              
22             =head2 builder
23              
24             Returns a code-ref or method name for building the default value for this
25             field or undef unless a builder was not defined.
26              
27             =head2 name
28              
29             Returns the name.
30              
31             =head2 type_constraint
32              
33             Returns the type specified as "isa" in the constructor.
34              
35             =head1 AUTHOR
36              
37             Jan Henning Thorsen - C
38              
39             =cut