We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a50df3 commit 39467acCopy full SHA for 39467ac
tests/test_copier.py
@@ -11,20 +11,13 @@ def test_project_folder(default_project):
11
"LICENSE",
12
"CONTRIBUTING.rst",
13
"pyproject.toml",
14
+ "my_project/__init__.py",
15
+ "my_project/my_project.py",
16
])
17
def test_generated_file_exists(default_project, file_name):
18
assert default_project.project_dir.joinpath(file_name).exists()
19
20
-@pytest.mark.parametrize("file_name", [
- "__init__.py",
21
- "my_project.py",
22
-])
23
-def test_generated_file_in_project_slug_exists(default_project, file_name):
24
- assert default_project.project_dir.joinpath('my_project').joinpath(
25
- file_name).exists()
26
-
27
28
@pytest.mark.parametrize("desired", [
29
"\nmy_project_description\n",
30
"pip install my_project",
0 commit comments