Alex Willmer
110eba05ce
Import and use unittest2 without aliasing it
7 years ago
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.
7 years ago
Alex Willmer
9351a44784
Use unittest2 in all tests
...
This allows using features such as TestCase,assertIsInstance on Python
2.6 and earlier.
7 years ago
Alex Willmer
fe2bf7111a
ssh_test: Correct hostname in SShTest.test_stream_name()
...
I presume that `u1704` is a relic of a bygone container/host.
7 years ago
David Wilson
f57a12b3f9
Fix context naming for sudo and via=.
7 years ago
David Wilson
d9bf091e6f
Simple working fakessh_test.
7 years ago
David Wilson
bd2c613b9c
Fix up a few more ssh_tests, stop sending 400 modules over network.
...
Defining functions in the current module was causing the entirety of
py.test and all dependencies to be sucked in.
7 years ago
David Wilson
cf506dfdf2
First handful of functional tests for SSH against Docker.
7 years ago
David Wilson
10c0dca24c
Apply package rename to tests
7 years ago
David Wilson
3535e45245
Broken SSH unit test.
8 years ago