File Coverage

lib/LiBot/Message.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package LiBot::Message;
2 2     2   11 use strict;
  2         15  
  2         76  
3 2     2   10 use warnings;
  2         4  
  2         56  
4 2     2   11 use utf8;
  2         4  
  2         12  
5              
6 2     2   17254 use Mouse;
  2         73215  
  2         13  
7              
8             has text => (is => 'ro', isa => 'Str', required => 1);
9             has nickname => (is => 'ro', isa => 'Str', required => 1);
10              
11 2     2   855 no Mouse;
  2         5  
  2         10  
12              
13             1;
14             __END__