Skip to content

Commit

Permalink
score testen als TODO gezet
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoutAllaert committed Mar 11, 2024
1 parent fb3b334 commit eec665e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions api/tests/models/test_score.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
from django.test import TestCase
from api.tests.factories.score import ScoreFactory
from api.tests.factories.groep import GroepFactory
from api.tests.factories.indiening import IndieningFactory
# from api.tests.factories.score import ScoreFactory
# from api.tests.factories.groep import GroepFactory
# from api.tests.factories.indiening import IndieningFactory


class ScoreModelTest(TestCase):

""" TODO
def setUp(self):
self.indiening = IndieningFactory.create()
self.groep = GroepFactory.create()
Expand All @@ -22,3 +23,4 @@ def test_groep_field(self):
def test_str_method(self):
self.assertEqual(str(self.score), str(self.score.score))
"""

0 comments on commit eec665e

Please sign in to comment.