File Coverage

blib/lib/Net/Async/Slack/Event/GroupJoined.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::GroupJoined;
2              
3 4     4   345762 use strict;
  4         8  
  4         199  
4 4     4   20 use warnings;
  4         8  
  4         235  
5              
6 4     4   1611 use utf8;
  4         1113  
  4         29  
7              
8             our $VERSION = '0.015'; # VERSION
9              
10 4     4   569 use Net::Async::Slack::EventType;
  4         11  
  4         57  
11              
12             =encoding utf8
13              
14             =head1 NAME
15              
16             Net::Async::Slack::Event::GroupJoined - You joined a private channel
17              
18             =head1 DESCRIPTION
19              
20             Example input data:
21              
22             {
23             "type": "group_joined",
24             "channel": {
25             ...
26             }
27             }
28              
29              
30             =cut
31              
32 8     8 0 31 sub type { 'group_joined' }
33              
34             1;
35              
36             __END__