You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
imaginAIry/tests/test_cmds.py

14 lines
330 B
Python

from click.testing import CliRunner
from imaginairy.cmds import imagine_cmd
from tests import TESTS_FOLDER
def test_imagine_cmd():
runner = CliRunner()
result = runner.invoke(
imagine_cmd,
["gold coins", "--steps", "5", "--outdir", f"{TESTS_FOLDER}/test_output"],
)
assert result.exit_code == 0