source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/views/default/test.html

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.2 KB
Line 
1{{extend 'layout.html'}}
2
3{{block sectionclass}}test{{end}}
4<!-- begin "test" block -->
5<h2>{{=T('Testing application')}} "{{=app}}"</h2>
6
7{{for controller in sorted(controllers):}}
8<div id='output_{{=controller[:-3]}}'>
9  <h3>Testing controller "{{=controller}}"... <blink>please wait!</blink></h3>
10</div>
11
12<script><!--
13ajax('{{=URL(a=app,c=controller[:-3],f='_TEST')}}',[],'output_{{=controller[:-3]}}');
14//--></script>
15{{pass}}
16
17<div class="row-fluid">
18        <p class="help alert alert-info span6">{{=T("""If the report above contains a ticket number it indicates a failure in executing the controller, before any attempt to execute the doctests. This is usually due to an indentation error or an error outside function code.
19                A green title indicates that all tests (if defined) passed. In this case test results are not shown.""")}}</p>
20</div>
21<div class="row-fluid">
22        <p class="help alert alert-info span6">{{=T('Functions with no doctests will result in [passed] tests.')}}</p>
23</div>
24<div class="row-fluid">
25        <p class="help alert alert-info span6">{{=T('ATTENTION: TESTING IS NOT THREAD SAFE SO DO NOT PERFORM MULTIPLE TESTS CONCURRENTLY.')}}</p>
26</div>
27<!--end "test" block -->
Note: See TracBrowser for help on using the repository browser.