Condition Coverage

blib/lib/Data/Dumper/MessagePack.pm
Criterion Covered Total %
condition 3 18 16.6


or 2 conditions

line l !l condition
91 0 0 $unpack_double_oabi || sub { my(@v) = unpack('V2', substr($_[0], $_[1], 8)); return unpack('d', pack('N2', @v[1, 0])); }
96 0 0 $unpack_int64_slow || sub { my(@v) = unpack('V*', substr($_[0], $_[1], 8)); return unpack('q', pack('N2', @v[1, 0])); }
100 0 0 $unpack_uint64_slow || sub { my(@v) = unpack('V*', substr($_[0], $_[1], 8)); return unpack('Q', pack('N2', @v[1, 0])); }
104 0 0 $unpack_double_oabi || sub { return unpack('d', substr($_[0], $_[1], 8)); }
105 0 0 $unpack_int64_slow || sub { unpack 'q', substr($_[0], $_[1], 8); }
106 0 0 $unpack_uint64_slow || sub { unpack 'Q', substr($_[0], $_[1], 8); }
120 0 2 $unpack_double_oabi || sub { return unpack('d>', substr($_[0], $_[1], 8)); }
124 0 2 $unpack_int64_slow || sub { return unpack('q>', substr($_[0], $_[1], 8)); }
125 0 2 $unpack_uint64_slow || sub { return unpack('Q>', substr($_[0], $_[1], 8)); }