File Coverage

blib/lib/App/Toodledo/FolderRole.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 App::Toodledo::FolderRole;
2              
3 1     1   677 use Moose::Role;
  1         2  
  1         9  
4              
5             our $VERSION = '1.00';
6              
7             has id => ( is => 'rw', isa => 'Int' );
8             has name => ( is => 'rw', isa => 'Str' );
9             has private => ( is => 'rw', isa => 'Int' );
10             has archived => ( is => 'rw', isa => 'Int' );
11             has ord => ( is => 'rw', isa => 'Int' );
12              
13 1     1   5233 no Moose;
  1         3  
  1         9  
14              
15             1;
16              
17             __END__
18              
19             =head1 NAME
20              
21             App::Toodledo::FolderRole - internal attributes of a folder.
22              
23             =head1 SYNOPSIS
24              
25             For internal L<App::Toodledo> use only.
26              
27             =head1 DESCRIPTION
28              
29             For internal L<App::Toodledo> use only.
30              
31             =head1 ATTRIBUTES
32              
33             The attributes of a folder are defined here. They should match
34             what Toodledo publishes in their API. They are:
35              
36              
37             =head2 id
38              
39             =head2 name
40              
41             =head2 private
42              
43             =head2 archived
44              
45             =head2 ord
46              
47             =head1 AUTHOR
48              
49             Peter Scott C<cpan at psdt.com>
50              
51             =cut