1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-09-13 09:09:58 +00:00

add extended version information

This commit is contained in:
Patrick Kanzler
2023-09-24 23:42:07 +02:00
parent 6d0c475b9a
commit 486f4a50dc
3 changed files with 54 additions and 3 deletions

View File

@@ -81,6 +81,12 @@ class TestCLI:
assert not result.stderr
assert escpos.__version__ == result.stdout.strip()
def test_cli_version_extended(self):
"""Test the extended version information"""
result = self.env.run("python-escpos", "version_extended")
assert not result.stderr
# TODO test output
@pytest.mark.skip(
reason="disable this test as it is not that easy anymore to predict the outcome of this call"
)