File Coverage

blib/lib/App/Toodledo/AccountRole.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::AccountRole;
2              
3 8     8   3197 use Moose::Role;
  8         16  
  8         62  
4              
5             our $VERSION = '1.00';
6              
7             has pro => (is => 'rw', isa => 'Int' );
8             has dateformat => (is => 'rw', isa => 'Str' );
9             has timezone => (is => 'rw', isa => 'Int' );
10             has hidemonths => (is => 'rw', isa => 'Int' );
11             has hotlistpriority => (is => 'rw', isa => 'Int' );
12             has hotlistduedate => (is => 'rw', isa => 'Int' );
13             has hotliststar => (is => 'rw', isa => 'Bool' );
14             has hotliststatus => (is => 'rw', isa => 'Bool' );
15             has showtabnums => (is => 'rw', isa => 'Bool' );
16             has lastedit_task => (is => 'rw', isa => 'Int' );
17             has lastdelete_task => (is => 'rw', isa => 'Int' );
18             has lastedit_folder => (is => 'rw', isa => 'Int' );
19             has lastedit_context => (is => 'rw', isa => 'Int' );
20             has lastedit_goal => (is => 'rw', isa => 'Int' );
21             has lastedit_location => (is => 'rw', isa => 'Int' );
22             has lastedit_notebook => (is => 'rw', isa => 'Int' );
23             has lastdelete_notebook => (is => 'rw', isa => 'Int' );
24             has userid => (is => 'rw', isa => 'Str' );
25             has alias => (is => 'rw', isa => 'Str' );
26              
27 8     8   37283 no Moose;
  8         18  
  8         51  
28              
29             1;
30              
31             __END__
32              
33             =head1 NAME
34              
35             App::Toodledo::Account - internal attributes of an account.
36              
37             =head1 SYNOPSIS
38              
39             For internal L<App::Toodledo> use only.
40              
41             =head1 DESCRIPTION
42              
43             For internal L<App::Toodledo> use only.
44              
45             =head1 AUTHOR
46              
47             Peter Scott C<cpan at psdt.com>
48              
49             =cut