This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
kse-02/tests/test_zellers_birthday.py

17 lines
446 B
Python
Raw Normal View History

2023-12-09 19:52:07 +00:00
from unittest import TestCase
from benchmark.zellers_birthday import zeller
class Test_zeller(TestCase):
def test_zeller_1(self):
assert zeller(d=-466, m=3, y=76) == 'Tuesday'
def test_zeller_2(self):
assert zeller(d=626, m=-928, y=27) == 'Saturday'
def test_zeller_3(self):
assert zeller(d=19, m=108, y=68) == 'Friday'
def test_zeller_4(self):
assert zeller(d=284, m=255, y=-6) == 'Thursday'