File Coverage

blib/lib/Async/Trampoline/Scheduler.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 1     1   8 use strict;
  1         3  
  1         39  
2 1     1   8 use warnings;
  1         3  
  1         36  
3 1     1   8 use utf8;
  1         3  
  1         7  
4              
5             package Async::Trampoline::Scheduler;
6              
7             ## no critic
8             our $VERSION = '0.001000';
9             $VERSION = eval $VERSION;
10             ## use critic
11              
12 1     1   97 use XSLoader;
  1         3  
  1         54  
13             XSLoader::load __PACKAGE__, $VERSION;
14              
15             1;
16              
17             __END__