File Coverage

blib/lib/Tapper/Schema/TestrunDB/Result/Tap.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Tapper::Schema::TestrunDB::Result::Tap;
2             our $AUTHORITY = 'cpan:TAPPER';
3             $Tapper::Schema::TestrunDB::Result::Tap::VERSION = '5.0.9';
4             # ABSTRACT: Tapper - containing tap reports
5              
6 7     7   3192 use 5.010;
  7         18  
7 7     7   26 use strict;
  7         8  
  7         113  
8 7     7   19 use warnings;
  7         9  
  7         153  
9              
10 7     7   22 use parent 'DBIx::Class';
  7         8  
  7         28  
11              
12 7     7   316 use Data::Dumper;
  7         9  
  7         941  
13              
14             __PACKAGE__->load_components(qw(InflateColumn::DateTime TimeStamp Core));
15             __PACKAGE__->table("tap");
16             __PACKAGE__->add_columns
17             (
18             "id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, is_auto_increment => 1, },
19             "report_id", { data_type => "INT", default_value => undef, is_nullable => 0, size => 11, },
20             #
21             # raw tap
22             "tap", { data_type => "LONGBLOB", default_value => "", is_nullable => 0, },
23             "tap_is_archive", { data_type => "INT", default_value => undef, is_nullable => 1, size => 11, },
24             #
25             # parsed tap
26             "tapdom", { data_type => "LONGBLOB", default_value => "", is_nullable => 1, },
27             "created_at", { data_type => "DATETIME", default_value => undef, is_nullable => 0, set_on_create => 1, },
28             "updated_at", { data_type => "DATETIME", default_value => undef, is_nullable => 0, set_on_create => 1, set_on_update => 1, },
29             );
30              
31             __PACKAGE__->set_primary_key("id");
32              
33             __PACKAGE__->belongs_to ( report => 'Tapper::Schema::TestrunDB::Result::Report', { 'foreign.id' => 'self.report_id' });
34              
35             1;
36              
37             __END__
38              
39             =pod
40              
41             =encoding UTF-8
42              
43             =head1 NAME
44              
45             Tapper::Schema::TestrunDB::Result::Tap - Tapper - containing tap reports
46              
47             =head1 AUTHORS
48              
49             =over 4
50              
51             =item *
52              
53             AMD OSRC Tapper Team <tapper@amd64.org>
54              
55             =item *
56              
57             Tapper Team <tapper-ops@amazon.com>
58              
59             =back
60              
61             =head1 COPYRIGHT AND LICENSE
62              
63             This software is Copyright (c) 2017 by Advanced Micro Devices, Inc..
64              
65             This is free software, licensed under:
66              
67             The (two-clause) FreeBSD License
68              
69             =cut