Mercurial > mozilla > hg > ProfileManager
annotate profilemanager/tests/test.py @ 27:5988a15da3b4
things are being awful; checking in anyway
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 06 May 2010 16:47:12 -0700 |
parents | a07e53273b70 |
children | d4f0c1c4d0eb |
rev | line source |
---|---|
12 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
4 doctest runner | |
5 """ | |
6 | |
7 import doctest | |
8 import os | |
9 | |
10 def run_tests(): | |
11 directory = os.path.dirname(os.path.abspath(__file__)) | |
12 tests = [ test for test in os.listdir(directory) | |
13 if test.endswith('.txt') ] | |
14 | |
15 for test in tests: | |
27
5988a15da3b4
things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents:
12
diff
changeset
|
16 doctest.testfile(test, raise_on_error=True) |
12 | 17 |
18 if __name__ == '__main__': | |
19 run_tests() | |
27
5988a15da3b4
things are being awful; checking in anyway
Jeff Hammel <jhammel@mozilla.com>
parents:
12
diff
changeset
|
20 |