File Coverage

lib/Termbox/Cell.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::Cell 0.12 {
2 2     2   35 use 5.020;
  2         5  
3 2     2   10 use strictures 2;
  2         13  
  2         72  
4 2     2   386 use warnings;
  2         27  
  2         52  
5             #
6 2     2   1302 use FFI::Platypus::Record;
  2         3258  
  2         159  
7             record_layout_1(
8             qw[
9             uint32_t ch
10             uint16_t fg
11             uint16_t bg
12             ]
13             );
14             }
15             #
16             1;
17             __END__