1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Tests
=====
Put doc and unit tests in src/oopstools/oops/test/.
Running
-------
To run the full test suite either run 'make check' or
bin/django test
To filter doctests by regular expressions, you can instead do:
bin/django test <re1> <re2>
which will run any tests matching either <re1> or <re2> regular expressions.
Eg. to run dboopsloader.txt, one can do
bin/django test dboopsloader.txt
Unit tests are all run regardless of the 'test labels' passed in.
|