Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: NilashishC <[email protected]>
  • Loading branch information
NilashishC committed Jan 30, 2024
1 parent 04f0a21 commit 5004630
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/units/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def test_expand_path() -> None:
"collection": "testorg.testcol",
"init_path": "./",
"force": False,
"templates_path": None,
},
],
[
Expand Down Expand Up @@ -59,6 +60,7 @@ def test_expand_path() -> None:
"collection": "testorg.testcol",
"init_path": "/home/ansible",
"force": True,
"templates_path": None,
},
],
],
Expand All @@ -82,6 +84,7 @@ def test_configuration_class() -> None:
"verbose": 2,
"collection": "testorg.testcol",
"init_path": "$HOME",
"templates_path": None,
}
app_config = Config(**cli_args)
assert app_config.namespace == "testorg"
Expand Down
1 change: 1 addition & 0 deletions tests/units/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ def cli_args(tmp_path) -> dict:
"verbose": 0,
"collection": "testorg.testcol",
"init_path": tmp_path,
"templates_path": None,
}


Expand Down

0 comments on commit 5004630

Please sign in to comment.