File Coverage

blib/lib/Net/Async/Slack/Event/ChannelArchive.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 18 19 94.7


line stmt bran cond sub pod time code
1             package Net::Async::Slack::Event::ChannelArchive;
2              
3 4     4   422854 use strict;
  4         11  
  4         240  
4 4     4   27 use warnings;
  4         24  
  4         458  
5              
6             our $VERSION = '0.015'; # VERSION
7              
8 4     4   30 use parent qw(Net::Async::Slack::Event::Channel);
  4         10  
  4         34  
9              
10 4     4   786 use Net::Async::Slack::EventType;
  4         12  
  4         35  
11              
12             =head1 DESCRIPTION
13              
14             {
15             "type": "channel_archive",
16             "channel": "C024BE91L",
17             "user": "U024BE7LH"
18             }
19              
20             =cut
21              
22 8     8 0 30 sub type { 'channel_archive' }
23              
24             1;
25              
26             __END__