Alex Willmer
18c89de5a9
Remove unused module imports
3 years ago
Alex Willmer
1287d58a54
Use with open(): ... to ensure file objects get closed
3 years ago
Alex Willmer
caa20be43e
tests: Use TestCase.assertEqual()
...
assertEquals() is deperecated in unittest
3 years ago
Alex Willmer
a8317c2393
tests: Remove unittest2, use stdlib unittest
...
unittest2 is incomplatible with Python 3.10
3 years ago
David Wilson
8a0b343760
issue #406 : test for FD leak after every TestCase
6 years ago
David Wilson
9903692811
master: update scan_code_imports to cope with wordcode
...
Constant-sized opcodes were introduced as an optimization in Python 3.6.
See https://bugs.python.org/issue26647
6 years ago
Alex Willmer
0dcaeb21a2
master_test: Don't assume __file__ points to source code
...
When run under a test runner the unit tests are imported as modules.
This triggers .pyc generation, after which __file__ resolves to the .pyc
file.
7 years ago
Alex Willmer
f4405c6bbc
Split IterReadTest & WriteAllTest into test_parent
...
This matches their respective functions under test, which now reside in
mitogen.parent.
7 years ago
Alex Willmer
4fb1b928b7
Adjust unittest for master -> parent split
...
Tests should now match changes in
4d31300dd0
7 years ago
Alex Willmer
7e01c5bed5
Import and use unittest2 without aliasing it
7 years ago
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.
7 years ago
Alex Willmer
17da6e9998
Use unittest2 in all tests
...
This allows using features such as TestCase,assertIsInstance on Python
2.6 and earlier.
7 years ago
David Wilson
236d83418c
Simple scan_code_imports test.
7 years ago
David Wilson
1411790f56
master: make write_all() handle O_NONBLOCK and deadlines.
7 years ago
David Wilson
db225638f0
core: Make iter_read() handle deadline (and non-blocking IO) properly
7 years ago