File Coverage

blib/lib/Facebook/Messenger/Client/Text.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Facebook::Messenger::Client::Text;
2              
3 1     1   4 use Moose;
  1         43  
  1         11  
4              
5             extends 'Facebook::Messenger::Client::Model';
6              
7             has 'text' => (
8             is => 'ro',
9             isa => 'Str',
10             required => 1,
11             );
12              
13             __PACKAGE__->meta()->make_immutable();
14              
15             1;
16              
17             __END__
18              
19             =pod
20              
21             =head1 NAME
22              
23             Facebook::Messenger::Client::Text -
24              
25             =head1 SYNOPSIS
26              
27             =head1 DESCRIPTION
28              
29             =head1 METHODS
30              
31             =head1 AUTHOR
32              
33             Tudor Marghidanu <tudor@marghidanu.com>
34              
35             =head1 SEE ALSO
36              
37             =over 4
38              
39             =item *
40              
41             L<Moose>
42              
43             =item *
44              
45             L<Mojolicious>
46              
47             =back
48              
49             =head1 LICENSE
50              
51             This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.
52              
53             =cut