home · contact · privacy
Move TEMPLATES_DIR setting into run.py.
[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')