File Coverage

blib/arch/Intertangle/API/Kiwisolver/Variable.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition 2 2 100.0
subroutine 3 3 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1 8     8   56 use Renard::Incunabula::Common::Setup;
  8         15  
  8         86  
2             package Intertangle::API::Kiwisolver::Variable;
3             # ABSTRACT: Kiwisolver variable
4             $Intertangle::API::Kiwisolver::Variable::VERSION = '0.001';
5 8     8   52320 use overload "fallback" => 0, '""' => \&stringify;
  8         18  
  8         61  
6              
7             sub stringify {
8 11     11 0 14713438 my ($self) = @_;
9 11   100     24 "(@{[ $self->name || '[unnamed]' ]} : @{[ $self->value ]})"
  11         104  
  11         126  
10             }
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Intertangle::API::Kiwisolver::Variable - Kiwisolver variable
23              
24             =head1 VERSION
25              
26             version 0.001
27              
28             =head1 CLASS METHODS
29              
30             =head2 new
31              
32             TODO
33              
34             =head1 METHODS
35              
36             =head2 name
37              
38             TODO
39              
40             =head2 setName
41              
42             TODO
43              
44             =head2 value
45              
46             TODO
47              
48             =head2 setValue
49              
50             TODO
51              
52             =head2 equals
53              
54             TODO
55              
56             =head1 AUTHOR
57              
58             Zakariyya Mughal <zmughal@cpan.org>
59              
60             =head1 COPYRIGHT AND LICENSE
61              
62             This software is copyright (c) 2019 by Zakariyya Mughal.
63              
64             This is free software; you can redistribute it and/or modify it under
65             the same terms as the Perl 5 programming language system itself.
66              
67             =cut