File Coverage

blib/arch/Intertangle/API/Kiwisolver/Constraint.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


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