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.021002';
3             ## Generic channel events.
4              
5 8     8   15052 use strictures 2;
  8         1234  
  8         272  
6 8     8   1505 use Bot::Cobalt::Common qw/:types/;
  8         11  
  8         43  
7              
8 8     8   486 use Moo;
  8         6036  
  8         37  
9             extends 'Bot::Cobalt::IRC::Event';
10              
11             has 'channel' => ( is => 'rw', isa => Str, required => 1 );
12              
13             1;
14             __END__