From 2352c62311fc382f65fe4e9bac4956ada08a6d76 Mon Sep 17 00:00:00 2001 From: Erik Harding Date: Wed, 17 Apr 2024 12:25:10 +0200 Subject: [PATCH] add comment --- randomisation/tests/test_utils.py | 1 + randomisation/views.py | 1 + 2 files changed, 2 insertions(+) diff --git a/randomisation/tests/test_utils.py b/randomisation/tests/test_utils.py index db31023..31efcc9 100644 --- a/randomisation/tests/test_utils.py +++ b/randomisation/tests/test_utils.py @@ -11,6 +11,7 @@ from .utils import create_test_strategy +# TODO: add docstrings to tests class TestValidateStratificationData(TestCase): def setUp(self): self.strategy = create_test_strategy() diff --git a/randomisation/views.py b/randomisation/views.py index 8ff2fee..2fa397d 100644 --- a/randomisation/views.py +++ b/randomisation/views.py @@ -28,4 +28,5 @@ def post(self, request, *args, **kwargs): return JsonResponse(data={"arm": arm}, status=status.HTTP_200_OK) + # TODO: add tests for views