File Coverage

root/tapper/testruns/id/index.mas
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             <%args>
2             $report
3             $testrun
4             $overview
5             $hostname
6             $time
7             %reportlist_rgt => {}
8             $precondition_string => ''
9             </%args>
10              
11 1     1   9340 % use Data::Dumper;
  1         3  
  1         675  
12             % my $topic = $testrun->topic_name;
13              
14             <h3>
15             Testrun <% $testrun->id %>:
16             <strong><a href="/tapper/testruns/topic/<% $topic %>"><% $topic %></a></strong>
17             </h3>
18              
19             <!-- ************************************************************ -->
20              
21             % if (%reportlist_rgt) {
22             <h4>Reports</h4>
23             <& /tapper/reports/reportlist.mas, reportlist => \%reportlist_rgt, testplan_id => $testrun->testplan_id &>
24             %}
25              
26             <!-- ************************************************************ -->
27              
28              
29             <ul class="post_info">
30             <li class="date"><% $time || '' %></li>
31             <li class="meta">Host: '<% $hostname || '' %>'</li>
32             </ul>
33              
34             <!-- ************************************************************ -->
35              
36             <& /tapper/testruns/testrun_overview.mas, overview => $overview &>
37              
38             <!-- <a href="/tapper/testruns/<% $testrun->id %>/similar" title="Create a new precondition and use this precondition as a template.">Create similar Testrun</a> |> -->
39             <!-- <a href="/tapper/testruns/<% $testrun->id %>/change" title="Change values of this preconditions without creating a new one">Change Testrun</a> | -->
40             <!-- <a href="/tapper/testruns/<% $testrun->id %>/delete" title="Information about testruns using this precondition will be wrong.">Delete Testrun</a> | -->
41              
42             <!-- ************************************************************ -->
43              
44             <h4>Preconditions</h4>
45             <pre>
46             <% $precondition_string %>
47             </pre>
48             % if ($testrun->testrun_scheduling->status eq 'schedule' or $testrun->testrun_scheduling->status eq 'prepare'){
49             <a href="/tapper/testruns/<% $testrun->id %>/preconditions/edit/">Edit precondition</a>
50             % }
51             <h4>Details</h4>
52             <ul style="list-style-type:disc;">
53             <li style="margin-left: 1em;"><a href="/tapper/testruns/<% $testrun->id %>/preconditions/yaml/">Preconditions in raw YAML</a></li>
54             % if ($testrun->testplan_id) {
55             <li style="margin-left: 1em;"><a href="/tapper/testplan/id/<% $testrun->testplan_id %>">Associated testplan</a></li>
56             % }
57             </ul>
58              
59             <!-- ************************************************************ -->
60              
61              
62             %# Local Variables:
63             %# buffer-file-coding-system: utf-8
64             %# End:
65