JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
Fix db_get_value after mysql->mysqli upgrade
[wfpl.git] / unit_tests / template.html
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5         <title>wfpl unit test results</title>
6         <meta name="robots" content="none">
7         <style type="text/css">
8                 .row_even, .row_odd, .error_even, .error_odd, .pass_even, .pass_odd {
9                         font: 14px monospace;
10                         margin-top: -1px;
11                         border: 1px dotted black;
12                         padding: 5px;
13                 }
14                 .row_even {
15                         background-color: #ddf;
16                 }
17                 .row_odd {
18                         background-color: #def;
19                 }
20                 .error_even {
21                         font-family: monospace;
22                         background-color: #fcc;
23                 }
24                 .error_odd {
25                         font-family: monospace;
26                         background-color: #fdb;
27                 }
28                 .pass_even {
29                         font-family: monospace;
30                         background-color: #cfc;
31                 }
32                 .pass_odd {
33                         font-family: monospace;
34                         background-color: #bfd;
35                 }
36 </style>
37 <script>
38         function showpass(thus) {
39                 var me = $(thus);
40                 me.parent().next().show();
41                 me.hide();
42         }
43 </script>
44 </head>
45
46 <body>
47   <h1>wfpl unit tests</h1>
48   
49   <!--~wfpl_messages {~-->
50       <div class="row_~row evenodd~">~data htmlbrnbsp~</div>
51   <!--~}~-->
52
53         <!--~unit_tests {~-->
54                 <!--~files {~-->
55                         <div class="row_~row evenodd~">
56                                 <div class="file">running tests in <code>~file html~</code></div>
57                                 <!--~fails {~-->
58                                         <div class="error_~err evenodd~">FAIL: ~data htmlbrnbsp~</div>
59                                 <!--~}~-->
60                                 <!--~count_passed once_if {~-->
61                                         <div><a href="javascript:void(0)" onclick="showpass(this)">~count_failed once_else {~All ~}~~count_passed html~ test~count_passed s~ passed</a></div>
62                                         <div style="display: none">
63                                                 <!--~passes {~-->
64                                                         <div class="pass_~pass evenodd~">PASS: ~data htmlbrnbsp~</div>
65                                                 <!--~}~-->
66                                         </div>
67                                 <!--~}~-->
68                         </div>
69                 <!--~}~-->
70                 <div class="totals">Total Passed: ~total_passed html~, Total Failed: ~total_failed html~</div>
71         <!--~}~-->
72
73 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
74 </body>
75 </html>