File Coverage

lib/Dancer/Plugin/Queue/Role/Queue.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   10989 use 5.008001;
  1         4  
  1         43  
2 1     1   4 use strict;
  1         3  
  1         32  
3 1     1   4 use warnings;
  1         3  
  1         58  
4              
5             package Dancer::Plugin::Queue::Role::Queue;
6             # ABSTRACT: Dancer::Plugin::Queue implementation API
7             our $VERSION = '0.002'; # VERSION
8              
9 1     1   5 use Moo::Role;
  1         2  
  1         6  
10              
11             requires 'add_msg';
12              
13             requires 'get_msg';
14              
15             requires 'remove_msg';
16              
17             1;
18              
19              
20             # vim: ts=4 sts=4 sw=4 et:
21              
22             __END__