From 8da3b7f1568138af634c066ea0d0b63c44692a57 Mon Sep 17 00:00:00 2001 From: Milne Date: Wed, 31 Jan 2024 15:06:16 +0000 Subject: [PATCH] Removes surplus injected variable tests --- ...test_govcookiecutter_injected_variables.py | 30 ------------------- 1 file changed, 30 deletions(-) diff --git a/tests/test_govcookiecutter_injected_variables.py b/tests/test_govcookiecutter_injected_variables.py index 6a4b3eb..3a11547 100644 --- a/tests/test_govcookiecutter_injected_variables.py +++ b/tests/test_govcookiecutter_injected_variables.py @@ -127,41 +127,11 @@ def recursive_open_and_count_search_terms( ("organisation_name", "org_1", ORGANISATION_NAME_COUNT), ("organisation_name", "org_2", ORGANISATION_NAME_COUNT), ("organisation_handle", "handle_1", ORGANISATION_HANDLE_COUNT), - ( - "organisation_handle", - "handle_2", - {**ORGANISATION_HANDLE_COUNT, '"{{ cookiecutter.organisation_handle }}",': 0}, - ), ("contact_email", "email@1", CONTACT_EMAIL_COUNT), - ( - "contact_email", - "email@2", - {**CONTACT_EMAIL_COUNT, '"{{ cookiecutter.contact_email }}")': 0}, - ), ("project_name", "Project_1", PROJECT_NAME_COUNT), - ( - "project_name", - "Project_2", - {**PROJECT_NAME_COUNT, "{{ cookiecutter.project_name }}": 3}, - ), ("repo_name", "repo_1", REPO_NAME_COUNT), - ( - "repo_name", - "repo_2", - {**REPO_NAME_COUNT, "{{ cookiecutter.repo_name }}": 5}, - ), ("overview", "overview_1", OVERVIEW_COUNT), - ( - "overview", - "overview_1", - {**OVERVIEW_COUNT, "{{ cookiecutter.overview }}": 3}, - ), ("project_version", "project_version_1", PROJECT_VERSION_COUNT), - ( - "project_version", - "project_version_2", - {**PROJECT_VERSION_COUNT, "{{ cookiecutter.project_version }}": 2}, - ), ]