(self)
| 73 | self.assertFalse(shell) |
| 74 | |
| 75 | def test_prepare_exe(self): |
| 76 | script_path = test_utils.create_file('test.exe') |
| 77 | (command, shell) = prepare_cmd_for_win([script_path]) |
| 78 | |
| 79 | self.assertEqual([script_path], command) |
| 80 | self.assertFalse(shell) |
| 81 | |
| 82 | def test_prepare_simple_py(self): |
| 83 | script_path = test_utils.create_file('test.py') |
nothing calls this directly
no test coverage detected