Skip to content

Commit

Permalink
Removes surplus injected variable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danmilne1 committed Jan 31, 2024
1 parent 2bfd2a7 commit 8da3b7f
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions tests/test_govcookiecutter_injected_variables.py
Expand Up @@ -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},
),
]


Expand Down

0 comments on commit 8da3b7f

Please sign in to comment.