File Coverage

blib/lib/WWW/Search/Ebay/Auctions.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             # $Id: Auctions.pm,v 1.9 2010-04-25 00:03:17 Martin Exp $
3              
4             =head1 NAME
5              
6             WWW::Search::Ebay::Auctions - backend for searching auctions at www.ebay.com
7              
8             =head1 DESCRIPTION
9              
10             This module is just a synonym of WWW::Search::Ebay.
11              
12             =head1 AUTHOR
13              
14             Martin 'Kingpin' Thurn, C, L.
15              
16             =head1 LICENSE
17              
18             Copyright (C) 1998-2009 Martin 'Kingpin' Thurn
19              
20             =cut
21              
22             package WWW::Search::Ebay::Auctions;
23              
24 1     1   2332 use strict;
  1         2  
  1         25  
25 1     1   4 use warnings;
  1         2  
  1         25  
26              
27 1     1   5 use base 'WWW::Search::Ebay';
  1         1  
  1         141  
28             our
29             $VERSION = do { my @r = (q$Revision: 1.9 $ =~ /\d+/g); sprintf "%d."."%03d" x $#r, @r };
30              
31             1;
32              
33             __END__