source: TracAccountManager/0.10/acct_mgr/tests/__init__.py @ 2

Last change on this file since 2 was 2, checked in by guillaume, 17 years ago

Ajout TracAccountManager en français

File size: 671 bytes
Line 
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
12import doctest
13import unittest
14
15def 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
22if __name__ == '__main__':
23    unittest.main(defaultTest='suite')
Note: See TracBrowser for help on using the repository browser.