doc/tutorials/advanced/part02_security.rst
branch3.26
changeset 12450 2fa51ebf9358
parent 12449 3724ddd950d3
child 12394 e847b5d1ffff
equal deleted inserted replaced
12449:3724ddd950d3 12450:2fa51ebf9358
   376 
   376 
   377 To run it type:
   377 To run it type:
   378 
   378 
   379 .. sourcecode:: bash
   379 .. sourcecode:: bash
   380 
   380 
   381     $ python test/unittest_sytweb.py
   381     $ python test/test_sytweb.py
   382     ========================  unittest_sytweb.py  ========================
   382     ======================================================================
   383     -> creating tables [....................]
   383     -> creating tables [====================]
   384     -> inserting default user and default groups.
   384     -> inserting default user and default groups.
   385     -> storing the schema in the database [....................]
   385     -> storing the schema in the database [====================]
   386     -> database for instance data initialized.
   386     -> database for instance data initialized.
   387     .
   387     .
   388     ----------------------------------------------------------------------
   388     ----------------------------------------------------------------------
   389     Ran 1 test in 22.547s
   389     Ran 1 test in 22.547s
   390 
   390 
   394 The first execution is taking time, since it creates a sqlite database for the
   394 The first execution is taking time, since it creates a sqlite database for the
   395 test instance. The second one will be much quicker:
   395 test instance. The second one will be much quicker:
   396 
   396 
   397 .. sourcecode:: bash
   397 .. sourcecode:: bash
   398 
   398 
   399     $ python test/unittest_sytweb.py
   399     $ python test/test_sytweb.py
   400     ========================  unittest_sytweb.py  ========================
   400     ======================================================================
   401     .
   401     .
   402     ----------------------------------------------------------------------
   402     ----------------------------------------------------------------------
   403     Ran 1 test in 2.662s
   403     Ran 1 test in 2.662s
   404 
   404 
   405     OK
   405     OK