File Coverage

blib/lib/Tapper/Schema/TestrunDB/ResultSet/ReportgroupTestrun.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Tapper::Schema::TestrunDB::ResultSet::ReportgroupTestrun;
2             our $AUTHORITY = 'cpan:TAPPER';
3             $Tapper::Schema::TestrunDB::ResultSet::ReportgroupTestrun::VERSION = '5.0.9';
4 7     7   14088 use strict;
  7         9  
  7         172  
5 7     7   22 use warnings;
  7         9  
  7         154  
6              
7 7     7   22 use parent 'DBIx::Class::ResultSet';
  7         9  
  7         26  
8              
9              
10             sub groupreports {
11 2     2 1 5072 my ($self) = @_;
12              
13 2         10 $self->search({}, {rows => 1})->first->groupreports;
14             }
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Tapper::Schema::TestrunDB::ResultSet::ReportgroupTestrun
27              
28             =head2 groupreports
29              
30             Return the group of all reports belonging to the first testrun of
31             current result set.
32              
33             =head1 AUTHORS
34              
35             =over 4
36              
37             =item *
38              
39             AMD OSRC Tapper Team <tapper@amd64.org>
40              
41             =item *
42              
43             Tapper Team <tapper-ops@amazon.com>
44              
45             =back
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is Copyright (c) 2017 by Advanced Micro Devices, Inc..
50              
51             This is free software, licensed under:
52              
53             The (two-clause) FreeBSD License
54              
55             =cut