mitogen/tests
Alex Willmer 81a77a453a 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.
2017-11-11 23:08:08 +00:00
..
data Beginnings of module_finder_test 2017-10-02 13:54:01 +05:30
README.md Add README.md to tests subdir. 2017-09-22 23:46:35 +05:30
build_docker_image.py Fix getting the directory path on Mac OS X. 2017-10-30 10:36:40 +00:00
call_function_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
channel_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
fakessh_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
first_stage_test.py Replace custom assertContains() with unitest2 assertIn() 2017-11-11 23:02:26 +00:00
id_allocation_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
importer_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
local_test.py Use unittest2 in all tests 2017-11-11 22:59:38 +00:00
master_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
module_finder_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
nested_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
responder_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
select_test.py Use unittest2 in all tests 2017-11-11 22:59:38 +00:00
ssh_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00
testlib.py Replace custom assertContains() with unitest2 assertIn() 2017-11-11 23:02:26 +00:00
utils_test.py Use specific TestCase assertions throughout tests 2017-11-11 23:08:08 +00:00

README.md

Warning

This directory is full of disorganized crap, including random hacks I checked in that I'd like to turn into tests. The effort to write tests only really started in September 2017. Pull requests in this area are very welcome!