File Coverage

blib/lib/Tapper/Reports/Web/Model/TestrunDB.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Tapper::Reports::Web::Model::TestrunDB;
2             our $AUTHORITY = 'cpan:TAPPER';
3             $Tapper::Reports::Web::Model::TestrunDB::VERSION = '5.0.13';
4 11     11   5032541 use strict;
  11         22  
  11         373  
5 11     11   44 use warnings;
  11         14  
  11         321  
6              
7 11     11   416 use Tapper::Config;
  11         26659  
  11         217  
8              
9 11     11   471 use parent 'Tapper::Reports::Web::Model';
  11         220  
  11         80  
10              
11             __PACKAGE__->config(
12             schema_class => 'Tapper::Schema::TestrunDB',
13             connect_info => [
14             Tapper::Config->subconfig->{database}{TestrunDB}{dsn},
15             Tapper::Config->subconfig->{database}{TestrunDB}{username},
16             Tapper::Config->subconfig->{database}{TestrunDB}{password},
17             ],
18             );
19              
20              
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =head1 NAME
30              
31             Tapper::Reports::Web::Model::TestrunDB
32              
33             =head1 DESCRIPTION
34              
35             L<Catalyst::Model::DBIC::Schema> Model using schema L<Tapper::Schema::TestrunDB>
36              
37             =head1 NAME
38              
39             Tapper::Reports::Web::Model::TestrunDB - Catalyst DBIC Schema Model
40             =head1 SYNOPSIS
41              
42             See L<Tapper::Reports::Web>
43              
44             =head1 AUTHOR
45              
46             Steffen Schwigon,,,
47              
48             =head1 LICENSE
49              
50             This program is released under the following license: freebsd
51              
52             =head1 AUTHORS
53              
54             =over 4
55              
56             =item *
57              
58             AMD OSRC Tapper Team <tapper@amd64.org>
59              
60             =item *
61              
62             Tapper Team <tapper-ops@amazon.com>
63              
64             =back
65              
66             =head1 COPYRIGHT AND LICENSE
67              
68             This software is Copyright (c) 2017 by Advanced Micro Devices, Inc..
69              
70             This is free software, licensed under:
71              
72             The (two-clause) FreeBSD License
73              
74             =cut