| 123456789101112131415161718 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- from jimvc import tests
- import unittest
- __author__ = 'James Iter'
- __date__ = '2017/03/31'
- __contact__ = 'james.iter.cn@gmail.com'
- __copyright__ = '(c) 2017 by James Iter.'
- if __name__ == '__main__':
- suite = tests.load_tests(unittest.TestLoader(), unittest.TestSuite())
- unittest.TextTestRunner(verbosity=2).run(suite)
|