File Coverage

blib/lib/HTTP/API/DataTypeMarker.pm
Criterion Covered Total %
statement 22 22 100.0
branch n/a
condition n/a
subroutine 14 14 100.0
pod 0 10 0.0
total 36 46 78.2


line stmt bran cond sub pod time code
1             package HTTP::API::DataTypeMarker;
2             $HTTP::API::DataTypeMarker::VERSION = '1.04';
3 7     7   53 use strict;
  7         16  
  7         251  
4 7     7   40 use warnings;
  7         15  
  7         253  
5 7     7   38 use base 'Exporter';
  7         13  
  7         2951  
6              
7             our @EXPORT = qw( xCSV xBOOLEAN
8             xTRUE xFALSE
9             xTrue xFalse
10             xtrue xfalse
11             xt__e xf___e
12             );
13              
14             sub xCSV {
15 6     6 0 7463 return bless \@_, 'CSV';
16             }
17              
18             sub xBOOLEAN {
19 12     12 0 101 return bless \@_, 'BOOL';
20             }
21              
22             sub xTRUE {
23 3     3 0 8614 return xBOOLEAN(\1);
24             }
25              
26             sub xFALSE {
27 3     3 0 9 return xBOOLEAN(\0);
28             }
29              
30             sub xTrue {
31 1     1 0 4 return xBOOLEAN('True');
32             }
33              
34             sub xFalse {
35 1     1 0 3 return xBOOLEAN('False');
36             }
37              
38             sub xtrue {
39 1     1 0 2 return xBOOLEAN('true');
40             }
41              
42             sub xfalse {
43 1     1 0 2 return xBOOLEAN('false');
44             }
45              
46             sub xt__e {
47 1     1 0 3 return xBOOLEAN('t');
48             }
49              
50             sub xf___e {
51 1     1 0 2 return xBOOLEAN('f');
52             }
53              
54 7     7   3929 no Moo::Role;
  7         64926  
  7         56  
55              
56             1;