(self)
| 12 | self.assertEqual(command_split, ['python']) |
| 13 | |
| 14 | def test_full_path_command(self): |
| 15 | file = test_utils.create_file('test.sh') |
| 16 | |
| 17 | command_split = process_utils.split_command('test.sh', test_utils.temp_folder) |
| 18 | |
| 19 | self.assertEqual(command_split, [os.path.abspath(file)]) |
| 20 | |
| 21 | def test_complex_command_linux(self): |
| 22 | test_utils.set_linux() |
nothing calls this directly
no outgoing calls
no test coverage detected