File Coverage

/tmp/loxFHvfPrB
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             #!/usr/bin/perl
2             package My::Test;
3 1     1   1161 use strict;
  1         3  
  1         39  
4 1     1   7 use warnings;
  1         2  
  1         31  
5              
6 1     1   14 use Test::More;
  1         2  
  1         15  
7              
8 1     1   930 use Fuckin::Lazy;
  1         3  
  1         134  
9              
10             my $foo = { a => 1, b => 2 };
11             is_deeply(
12             $foo,
13             {"a" => 1,"b" => 2},
14             "Foo"
15             );
16              
17             is_deeply($foo, {"a" => 1,"b" => 2}, "Foo");
18              
19             is_deeply($foo, {"a" => 1,"b" => 2}, "Foo");
20              
21             is_deeply($foo, {"a" => 1,"b" => 2}, "Foo");