1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
def test_version_print_console_from_init(app, console):
app.console = console
with console.capture() as capture:
app.version_print()
assert "0.0.0\n" == capture.get()
def test_version_print_console_from_method(app, console):
with console.capture() as capture:
app.version_print(console)
assert "0.0.0\n" == capture.get()
def test_version_print_console_none(app, console):
app.version = None
with console.capture() as capture:
app.version_print(console)
assert "0.0.0\n" == capture.get()
def test_version_print_custom_string(app, console):
"""The asterisks also test to make sure the proper help_format is being used."""
app.version = "**foo**"
with console.capture() as capture:
app.version_print(console)
assert "foo\n" == capture.get()
def test_version_print_custom_callable(app, console):
def my_version():
return "**foo**"
app.version = my_version
with console.capture() as capture:
app.version_print(console)
assert "foo\n" == capture.get()
def test_version_print_help_format_fallback(app, console):
"""If no explicit version_format is provided, we should fallback to help_format."""
app.help_format = "rich"
app.version = "[red]foo[/red]"
with console.capture() as capture:
app.version_print(console)
assert "foo\n" == capture.get()
def test_version_print_help_format_override(app, console):
"""If version_format is provided, help_format should not be used for version."""
app.help_format = "plain"
app.version_format = "rich"
app.version = "[red]foo[/red]"
with console.capture() as capture:
app.version_print(console)
assert "foo\n" == capture.get()
|