models: Add a BrowserModel for use by the repobrowser
[git-cola.git] / jsonpickle / tests / __init__.py
blob1763e191972cb17761d808cc55fed3fb6fc5ba05
1 # -*- coding: utf-8 -*-
3 # Copyright (C) 2008 John Paulett (john -at- 7oars.com)
4 # All rights reserved.
6 # This software is licensed as described in the file COPYING, which
7 # you should have received as part of this distribution.
9 import unittest
11 import jsonpickle.tests.util_tests
12 import jsonpickle.tests.jsonpickle_test
14 def suite():
15 suite = unittest.TestSuite()
16 suite.addTest(jsonpickle.tests.util_tests.suite())
17 suite.addTest(jsonpickle.tests.jsonpickle_test.suite())
18 return suite
20 def main():
21 #unittest.main(defaultTest='suite')
22 unittest.TextTestRunner(verbosity=2).run(suite())
24 if __name__ == '__main__':
25 main()