File Coverage

blib/lib/Bot/Cobalt/IRC/Event/Channel.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Bot::Cobalt::IRC::Event::Channel;
2             $Bot::Cobalt::IRC::Event::Channel::VERSION = '0.021001';
3             ## Generic channel events.
4              
5 8     8   15234 use strictures 2;
  8         1134  
  8         274  
6 8     8   1426 use Bot::Cobalt::Common qw/:types/;
  8         11  
  8         39  
7              
8 8     8   558 use Moo;
  8         6269  
  8         33  
9             extends 'Bot::Cobalt::IRC::Event';
10              
11             has 'channel' => ( is => 'rw', isa => Str, required => 1 );
12              
13             1;
14             __END__