blob: d95e19dbcec5498388b2a1c8d4ea0fa6a1141cb5 (
plain)
1
2
3
4
5
6
7
8
9
|
# flake8: noqa F821
# Tests echo argument to app()
app.cmd_echo = False
# echo defaults to current setting which is False, so this help text should not be echoed to pytest's stdout
app('help alias')
# pytest's stdout should have this help text written to it
app('help edit', echo=True)
|