• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# This file is part of pyasn1 software.
3#
4# Copyright (c) 2005-2018, Ilya Etingof <etingof@gmail.com>
5# License: http://snmplabs.com/pyasn1/license.html
6#
7try:
8    import unittest2 as unittest
9
10except ImportError:
11    import unittest
12
13suite = unittest.TestLoader().loadTestsFromNames(
14    ['tests.compat.test_binary.suite',
15     'tests.compat.test_integer.suite',
16     'tests.compat.test_octets.suite']
17)
18
19
20if __name__ == '__main__':
21    unittest.TextTestRunner(verbosity=2).run(suite)
22