File Coverage

blib/lib/Geo/OSM/MapFeatures/Feature/Value/Num.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1             package Geo::OSM::MapFeatures::Feature::Value::Num;
2              
3 1     1   839 use warnings;
  1         3  
  1         31  
4 1     1   7 use strict;
  1         2  
  1         35  
5              
6 1     1   6 use base qw(Geo::OSM::MapFeatures::Feature::Value);
  1         3  
  1         93  
7              
8 1     1   7 use overload '""' => \&stringify;
  1         3  
  1         8  
9              
10             =head1 NAME
11              
12             Geo::OSM::MapFeatures::Feature::Value::Num - Numeric value type
13              
14             =head1 VERSION
15              
16             Version 0.01
17              
18             =cut
19              
20             our $VERSION = '0.01';
21              
22              
23             =head1 SYNOPSIS
24              
25             =head1 FUNCTIONS
26              
27             =cut
28              
29             sub stringify {
30 0     0 0   my $self = shift;
31              
32 0           return "Numeric value";
33             }
34              
35             =head1 AUTHOR
36              
37             Knut Arne Bjørndal, C<< >>
38              
39             =head1 BUGS
40              
41             Please report any bugs or feature requests to C, or through
42             the web interface at L. I will be notified, and then you'll
43             automatically be notified of progress on your bug as I make changes.
44              
45              
46              
47              
48             =head1 SUPPORT
49              
50             You can find documentation for this module with the perldoc command.
51              
52             perldoc Geo::OSM::MapFeatures
53              
54              
55             You can also look for information at:
56              
57             =over 4
58              
59             =item * RT: CPAN's request tracker
60              
61             L
62              
63             =item * AnnoCPAN: Annotated CPAN documentation
64              
65             L
66              
67             =item * CPAN Ratings
68              
69             L
70              
71             =item * Search CPAN
72              
73             L
74              
75             =back
76              
77              
78             =head1 ACKNOWLEDGEMENTS
79              
80              
81             =head1 COPYRIGHT & LICENSE
82              
83             Copyright 2008 Knut Arne Bjørndal, all rights reserved.
84              
85             This program is free software; you can redistribute it and/or modify it
86             under the same terms as Perl itself.
87              
88              
89             =cut
90              
91             1; # End of Geo::OSM::MapFeatures::Feature::Value::Num