From 203bf6d598cc06f6c0c31acc887265e27308d1f3 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Fri, 29 Jul 2022 11:45:38 -0400 Subject: [PATCH] add test command to verify update functionality --- src/cli.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cli.py b/src/cli.py index e574c11..c738da1 100644 --- a/src/cli.py +++ b/src/cli.py @@ -33,6 +33,12 @@ def uuid4(): click.echo(uuid.uuid4()) +@main.command() +def ping(): + """Pong!""" + click.echo("Pong!") + + @main.command() @click.argument("words", nargs=-1) def beautify(words: list[str]):