summaryrefslogtreecommitdiffstats
path: root/report-generators/templates/unit_detail.rhtml
blob: 5324f07ccc7d3ca88c519d3ac76694a3fb478c46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<table width="95%" cellspacing="2" cellpadding="5" border="0" class="stripes">
<tr><th>Test</th><th>Result</th></tr>
<tr>
  <td>
  <%= t.desc %>
  </td>
  <% if t.status.success? %>
  <td class="pass">pass</td>
  <% else %>
  <td class="fail">fail</td>
  <% end %>
</tr>
</table>

<table width="95%" cellspacing="2" cellpadding="5" border="0" class="stripes">
<tr><th>Command line</th></tr>
<tr>
  <td>
  <pre>
<%= t.command_line %>
  </pre>
  </td>
</tr>
</table>


<table width="95%" cellspacing="2" cellpadding="5" border="0" class="stripes">
<tr><th>Output</th></tr>
<tr>
  <td>
  <pre>
<%= t.output %>
  </pre>
  </td>
</tr>
</table>