File Coverage

lib/Termbox/Event.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Termbox::Event 0.12 {
2 2     2   33 use 5.020;
  2         7  
3 2     2   15 use strictures 2;
  2         11  
  2         69  
4 2     2   343 use warnings;
  2         2  
  2         44  
5             #
6 2     2   9 use FFI::Platypus::Record;
  2         2  
  2         165  
7             record_layout_1(
8             qw[
9             uint8_t type
10             uint8_t mod
11             uint16_t key
12             uint32_t ch
13             int32_t w
14             int32_t h
15             int32_t x
16             int32_t y
17             ]
18             );
19             }
20             1;
21             __END__