File Coverage

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