webpy / webpy

web.py is a web framework for python that is as simple as it is powerful.

This URL has Read+Write access

webpy / README.tests
100644 28 lines (13 sloc) 0.419 kb
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
# web.py unit tests
 
## Setup
 
All databases expect a database with name `webpy` with username `scott` and password `tiger`.
 
## Running all tests
 
To run all tests:
 
    $ python test/alltests.py
 
## Running individual tests
 
To run all tests in a file:
 
    $ python test/db.py
 
To run all tests in a class:
 
    $ python test/db.py SqliteTest
 
To run a single test:
 
    $ python test/db.py SqliteTest.testUnicode