We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e931957 commit d60d281Copy full SHA for d60d281
1 file changed
squatter/tests/__init__.py
@@ -114,6 +114,7 @@ def test_cli_keep_flag(self, check_call_mock: Any, check_output_mock: Any) -> No
114
runner = CliRunner()
115
result = runner.invoke(generate, ["--keep", "foo"])
116
m = re.match("Generating in (.+)", result.output)
117
+ assert m is not None
118
assert Path(m.group(1)).exists()
119
assert Path(m.group(1), "pyproject.toml")
120
self.assertFalse(result.exception)
0 commit comments