Mercurial > mozilla > hg > ProfileManager
comparison profilemanager/tests/test.py @ 28:d4f0c1c4d0eb
all that fuss over a missing "s"
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 06 May 2010 16:48:43 -0700 |
parents | 5988a15da3b4 |
children | 6f2ad307fdda |
comparison
equal
deleted
inserted
replaced
27:5988a15da3b4 | 28:d4f0c1c4d0eb |
---|---|
11 directory = os.path.dirname(os.path.abspath(__file__)) | 11 directory = os.path.dirname(os.path.abspath(__file__)) |
12 tests = [ test for test in os.listdir(directory) | 12 tests = [ test for test in os.listdir(directory) |
13 if test.endswith('.txt') ] | 13 if test.endswith('.txt') ] |
14 | 14 |
15 for test in tests: | 15 for test in tests: |
16 doctest.testfile(test, raise_on_error=True) | 16 doctest.testfile(test) |
17 | 17 |
18 if __name__ == '__main__': | 18 if __name__ == '__main__': |
19 run_tests() | 19 run_tests() |
20 | 20 |