We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa1fed commit 2515dbdCopy full SHA for 2515dbd
tests/test_ellar_commands/test_create_project_command.py
@@ -12,6 +12,17 @@ def test_create_project_fails_for_py_project_none(cli_runner):
12
assert result.output == "Error: No pyproject.toml file found.\n"
13
14
15
+def test_create_project_without_py_project(cli_runner):
16
+ result = cli_runner.invoke_ellar_command(
17
+ ["create-project", "testing_new_project", "--plain"]
18
+ )
19
+ assert result.exit_code == 0
20
+ assert (
21
+ result.output
22
+ == "`testing_new_project` project scaffold completed.\nHappy coding!\n"
23
24
+
25
26
def test_create_project_fails_for_existing_project_name(
27
cli_runner, write_empty_py_project, tmpdir
28
):
0 commit comments