home · contact · privacy
c799f066c7628737afb42a6041786a7af8f1228a
[plomtask] / tests / test_days.py
1 """Test days module."""
2 from unittest import TestCase
3 from plomtask.days import Day
4
5
6 class DayTests(TestCase):
7     """Tests for testing the days module."""
8
9     def test_Day_weekday(self):
10         """Test Day.weekday."""
11         self.assertEqual(Day('2024-03-17').weekday, 'Sunday')