@@ -38,7 +38,7 @@ def create_test_configs(create_docs):
3838 "{{cookiecutter.github_username_or_organization}}/"
3939 "{{cookiecutter.package_name}}" ,
4040 "module_name" : "test_cookiecutter_module" ,
41- "short_description" : "Lets Test CookierCutter " ,
41+ "short_description" : "Lets Test CookieCutter " ,
4242 "license" : "MIT" ,
4343 "create_docs" : "yes" if create_docs else "no" ,
4444 },
@@ -225,7 +225,7 @@ def test_pyproject_toml(package_path_config_dict):
225225 assert (
226226 project_toml ["project" ]["authors" ][0 ]["email" ] == config_dict ["email" ]
227227 )
228- assert project_toml ["project" ]["description" ] == "Lets Test CookierCutter "
228+ assert project_toml ["project" ]["description" ] == "Lets Test CookieCutter "
229229 assert project_toml ["project" ]["readme" ] == "README.md"
230230 assert project_toml ["project" ]["requires-python" ] == ">=3.9.0"
231231 assert (
@@ -299,6 +299,9 @@ def test_pyproject_toml(package_path_config_dict):
299299
300300 assert "legacy_tox_ini" in project_toml ["tool" ]["tox" ]
301301
302+ assert project_toml ["tool" ]["codespell" ]["skip" ] == ".git"
303+ assert project_toml ["tool" ]["codespell" ]["check-hidden" ] is True
304+
302305
303306def test_pip_install (pip_install ):
304307 config_dict = pip_install
@@ -314,7 +317,7 @@ def test_pip_install(pip_install):
314317 show_details = stdout .decode ("utf8" )
315318 assert "Name: test-cookiecutter" in show_details
316319 assert "Version: 0.1.dev0" in show_details
317- assert "Summary: Lets Test CookierCutter " in show_details
320+ assert "Summary: Lets Test CookieCutter " in show_details
318321 assert (
319322 "Author-email: Test Cookiecutter <testing@cookiecutter.com>"
320323 in show_details
0 commit comments