Private
Public Access
1
0

coverage info

This commit is contained in:
Sander Roosendaal
2021-04-14 17:42:12 +02:00
parent aa2315cb9b
commit 39a196b949
6 changed files with 232 additions and 425 deletions

View File

@@ -83,6 +83,10 @@ class TrainingPlanTest(TestCase):
response = self.c.get(urlplan)
self.assertEqual(response.status_code,200)
url = reverse('rower_trainingplan_execution_view',kwargs={'id':1})
response = self.c.get(url)
self.assertEqual(response.status_code,200)
html = BeautifulSoup(response.content,'html.parser')
urls = [a['href'] for a in html.find_all('a')]