1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Simplified TimeFormat.g().

This commit is contained in:
Nick Pope
2020-11-12 14:19:17 +00:00
committed by GitHub
parent 895f6e4992
commit 0cbccaebeb
2 changed files with 17 additions and 5 deletions

View File

@@ -178,3 +178,19 @@ class DateFormatTests(SimpleTestCase):
dateformat.format(datetime(year, 9, 8, 5, 0), 'y'),
expected_date,
)
def test_twelve_hour_format(self):
tests = [
(0, '12'),
(1, '1'),
(11, '11'),
(12, '12'),
(13, '1'),
(23, '11'),
]
for hour, expected in tests:
with self.subTest(hour=hour):
self.assertEqual(
dateformat.format(datetime(2000, 1, 1, hour), 'g'),
expected,
)