(base_app)
| 2988 | |
| 2989 | |
| 2990 | def test_macro_create_with_args(base_app) -> None: |
| 2991 | # Create the macro |
| 2992 | out, _err = run_cmd(base_app, "macro create fake {1} {2}") |
| 2993 | assert out == normalize("Macro 'fake' created") |
| 2994 | |
| 2995 | # Run the macro |
| 2996 | out, _err = run_cmd(base_app, "fake help -v") |
| 2997 | verify_help_text(base_app, out) |
| 2998 | |
| 2999 | |
| 3000 | def test_macro_create_with_escaped_args(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…