File Coverage

blib/arch/Graphics/Layout/Kiwisolver/Constraint.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 16 75.0


line stmt bran cond sub pod time code
1 8     8   54 use strict;
  8         17  
  8         229  
2 8     8   39 use warnings;
  8         32  
  8         420  
3             package Graphics::Layout::Kiwisolver::Constraint;
4             # ABSTRACT: Kiwisolver constraint
5             $Graphics::Layout::Kiwisolver::Constraint::VERSION = '0.002';
6 8     8   47 use overload "fallback" => 0, '""' => \&stringify;
  8         80  
  8         53  
7              
8             sub stringify {
9 0     0 0   my ($self) = @_;
10             # TODO
11 0           "";
12             }
13              
14             1;
15              
16             __END__
17              
18             =pod
19              
20             =encoding UTF-8
21              
22             =head1 NAME
23              
24             Graphics::Layout::Kiwisolver::Constraint - Kiwisolver constraint
25              
26             =head1 VERSION
27              
28             version 0.002
29              
30             =head1 AUTHOR
31              
32             Zakariyya Mughal <zmughal@cpan.org>
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             This software is copyright (c) 2019 by Zakariyya Mughal.
37              
38             This is free software; you can redistribute it and/or modify it under
39             the same terms as the Perl 5 programming language system itself.
40              
41             =cut