forked from testoob/testoob
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
85 lines (60 loc) · 2.65 KB
/
README
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
----========================----
-== Testoob - Testing Out Of (The) Box ==-
----========================----
===========================================================
= Description:
===========================================================
Testoob is an advanced Python unit testing framework that
integrates effortlessly with Python's standard 'unittest'
module.
It's designed and built to be easy to use and extend.
===========================================================
= Links:
===========================================================
Home: http://code.google.com/p/testoob
Discussion: http://groups.google.com/group/testoob
Old docs: http://testoob.sourceforge.net
Source code: http://code.google.com/p/testoob/wiki/SourceControl
===========================================================
= Features:
===========================================================
Start using immediately with the 'testoob' executable, or
replace unittest.main() with testoob.main()
Some advanced options:
- Filtering (see testoob/extractors.py)
- Reporting (see testoob/reporting.py)
- Testing facilities (see testoob/testing.py)
- Running (e.g. threads) (see testoob/running.py)
- And more!
See the full running options by running 'testoob -h', and
check the documentation.
===========================================================
= Installation:
===========================================================
See docs/INSTALL
===========================================================
= Testing
===========================================================
On *nix, use GNU make (usually 'make' or 'gmake') from the project root:
make test # test with the default python version
make testall # test with different python versions
On Windows, run from the project root:
python tests\alltests.py
===========================================================
= License:
===========================================================
Testoob is distributed under the terms of the Apache
License, Version 2.0. See docs/COPYING for more
information.
===========================================================
= Credits:
===========================================================
Testoob has been created with the help of:
- Ori Peleg (orispammerpel at users.sourceforge.net)
- Barak Schiller (bspamalotschiller at gmail.com)
- Misha Seltzer (mishadontspamme at seltzer dot com)
- Wolfram Kriesing (ilikespamwolfram at kriesing dot de)
- Ronnie van 't Westeinde <Ronnie.gimmespam.van.t.Westeinde at gmail dot com>
To mail us, remove spam-related words from the user names.
Have fun testing!
The Testoob team.