Private
Public Access
1
0

fixing tests coverage by creating tests of new functionality

This commit is contained in:
Sander Roosendaal
2021-05-31 11:08:44 +02:00
parent a2c41244e9
commit 2180287866
7 changed files with 64 additions and 12 deletions

View File

@@ -820,6 +820,13 @@ class WorkoutViewTest(TestCase):
response = self.c.get(url)
self.assertEqual(response.status_code,200)
form_data = {
'ruptures':'ruptures',
}
response = self.c.post(url,form_data)
self.assertEqual(response.status_code,200)
form_data = {
'intervalstring':'4x2min/1min',
}