Rev | Line | |
---|
[2] | 1 | # -*- coding: utf-8 -*- |
---|
| 2 | # |
---|
| 3 | # Copyright (C) 2005 Matthew Good <trac@matt-good.net> |
---|
| 4 | # |
---|
| 5 | # "THE BEER-WARE LICENSE" (Revision 42): |
---|
| 6 | # <trac@matt-good.net> wrote this file. As long as you retain this notice you |
---|
| 7 | # can do whatever you want with this stuff. If we meet some day, and you think |
---|
| 8 | # this stuff is worth it, you can buy me a beer in return. Matthew Good |
---|
| 9 | # |
---|
| 10 | # Author: Matthew Good <trac@matt-good.net> |
---|
| 11 | |
---|
| 12 | import doctest |
---|
| 13 | import unittest |
---|
| 14 | |
---|
| 15 | def suite(): |
---|
| 16 | from acct_mgr.tests import htfile, db |
---|
| 17 | suite = unittest.TestSuite() |
---|
| 18 | suite.addTest(htfile.suite()) |
---|
| 19 | suite.addTest(db.suite()) |
---|
| 20 | return suite |
---|
| 21 | |
---|
| 22 | if __name__ == '__main__': |
---|
| 23 | unittest.main(defaultTest='suite') |
---|
Note: See
TracBrowser
for help on using the repository browser.