Alex Willmer
a8317c2393
tests: Remove unittest2, use stdlib unittest
...
unittest2 is incomplatible with Python 3.10
2022-04-20 17:54:12 +01:00
Alex Willmer
7e01c5bed5
Import and use unittest2 without aliasing it
2018-03-19 21:58:28 +05:45
Alex Willmer
e8e023ce59
Use specific TestCase assertions throughout tests
...
e.g. assert x == y -> self.assertEqual(x, y);
self.assertTrue(isinstance(x, y)) -> self.assertIsInstance(x, y)
These specific methods give more useful errors in the case of a test
failure.
2018-03-19 21:58:28 +05:45
Alex Willmer
17da6e9998
Use unittest2 in all tests
...
This allows using features such as TestCase,assertIsInstance on Python
2.6 and earlier.
2018-03-19 21:58:27 +05:45
David Wilson
d17af194b5
Fix importer_test constructor signature.
2018-03-19 21:35:37 +05:45
David Wilson
502266f115
Fix Channel constructor and add simple test; closes #32
2018-03-19 21:35:35 +05:45