| 55 | |
| 56 | |
| 57 | class TabStop_Shell_ShebangPython(_VimTest): |
| 58 | skip_if = lambda self: running_on_windows() |
| 59 | snippets = ( |
| 60 | "test", |
| 61 | """Hallo ${{1:now `#!/usr/bin/env {} |
| 62 | print("Hallo Welt") |
| 63 | `}} end""".format(os.environ.get("PYTHON", "python3")), |
| 64 | ) |
| 65 | keys = "test" + EX + JF + "and more" |
| 66 | wanted = "Hallo now Hallo Welt endand more" |
| 67 | |
| 68 | |
| 69 | class TabStop_VimScriptInterpolation_SimpleExample(_VimTest): |
nothing calls this directly
no test coverage detected