File Coverage

blib/lib/LINE/Bot/API/Event/VideoViewingComplete.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package LINE::Bot::API::Event::VideoViewingComplete;
2 53     53   616 use strict;
  53         109  
  53         2463  
3 53     53   306 use warnings;
  53         143  
  53         2921  
4 53     53   282 use parent 'LINE::Bot::API::Event::Base';
  53         112  
  53         328  
5              
6 1     1 0 5 sub is_video_viewing_complete_event { 1 }
7              
8 1     1 0 6 sub tracking_id { $_[0]->{videoPlayComplete}{trackingId} }
9              
10             1;