(in_tmpdir)
| 133 | |
| 134 | |
| 135 | def test_normalize_cmd_shebang(in_tmpdir): |
| 136 | us = sys.executable.replace(os.sep, '/') |
| 137 | path = write_executable(us) |
| 138 | assert parse_shebang.normalize_cmd((path,)) == (us, path) |
| 139 | |
| 140 | |
| 141 | def test_normalize_cmd_PATH_shebang_full_path(in_tmpdir): |
nothing calls this directly
no test coverage detected