refined project of year test

This commit is contained in:
Benni Bärmann 2021-10-04 14:32:09 +02:00
parent ea3072e559
commit 99a70229a1
1 changed files with 3 additions and 0 deletions

View File

@ -58,5 +58,8 @@ class TestWithLogin(TestCase):
obj2 = Project.objects.create(account= acc, name='testproject2', start=startdate)
self.assertEqual(obj2.project_of_year,2)
olddate = date(2021,12,31)
obj4 = Project.objects.create(account= acc, name='testproject2', start=olddate)
obj3 = Project.objects.create(account= acc, name='testproject2', start=startdate)
self.assertEqual(obj3.project_of_year,3)