def check_starter_project_published(details: ReleaseDetails) -> bool:
     version = details.new_version.get_version_text_without_v()
     url = DeployStarterProjectRelease.get_url_for_starter_project_single_header_for_version(
         details.project_details, version)
     published = check_url_exists(url)
     return published
 def test_check_url_exists(self) -> None:
     self.assertFalse(
         check_url_exists(
             DeployRelease.
             get_url_for_starter_project_single_header_for_version(
                 ProjectDetails(), '1.1.1')))