(self)
| 11 | class TestScriptHelper(unittest.TestCase): |
| 12 | |
| 13 | def test_assert_python_ok(self): |
| 14 | t = script_helper.assert_python_ok('-c', 'import sys; sys.exit(0)') |
| 15 | self.assertEqual(0, t[0], 'return code was not 0') |
| 16 | |
| 17 | def test_assert_python_failure(self): |
| 18 | # I didn't import the sys module so this child will fail. |
nothing calls this directly
no test coverage detected