-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
project.yaml validations on "project create"
- Loading branch information
Showing
2 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import pytest | ||
|
||
from leverage._utils import ExitError | ||
from leverage.modules.project import validate_config | ||
|
||
|
||
def test_validate_config_happy_path(): | ||
assert validate_config({"project_name": "fine"}) | ||
assert validate_config({"project_name": "fine_with_underscores"}) | ||
|
||
|
||
def test_validate_config_errors(muted_click_context): | ||
with pytest.raises(ExitError, match="Project name is not valid"): | ||
validate_config({"project_name": "with spaces"}) | ||
|
||
with pytest.raises(ExitError, match="Project name is not valid"): | ||
validate_config({"project_name": "with-hyphen"}) |