File Coverage

blib/lib/Net/SinFP/DB/Vendor.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #
2             # $Id: Vendor.pm 2236 2015-02-15 17:03:25Z gomor $
3             #
4             package Net::SinFP::DB::Vendor;
5 1     1   457 use strict;
  1         2  
  1         29  
6 1     1   3 use warnings;
  1         1  
  1         104  
7              
8             require DBIx::SQLite::Simple::Table;
9             our @ISA = qw(DBIx::SQLite::Simple::Table);
10              
11             our @AS = qw(
12             idVendor
13             vendor
14             );
15             __PACKAGE__->cgBuildIndices;
16             __PACKAGE__->cgBuildAccessorsScalar(\@AS);
17              
18             our $Id = $AS[0];
19             our @Fields = @AS[1..$#AS];
20              
21             1;
22              
23             =head1 NAME
24              
25             Net::SinFP::DB::Vendor - Vendor database table
26              
27             =head1 DESCRIPTION
28              
29             Go to http://www.gomor.org/sinfp to know more.
30              
31             =cut
32              
33             =head1 AUTHOR
34              
35             Patrice EGomoRE Auffret
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             Copyright (c) 2005-2015, Patrice EGomoRE Auffret
40              
41             You may distribute this module under the terms of the Artistic license.
42             See LICENSE.Artistic file in the source distribution archive.
43              
44             =cut