mirror of
https://github.com/django/django.git
synced 2025-08-04 10:59:45 +00:00
Fixed #24897 -- Allowed using choices longer than 1 day with DurationField
This commit is contained in:
parent
3222fc7943
commit
262d4db8c4
3 changed files with 18 additions and 1 deletions
|
@ -51,6 +51,20 @@ class DateParseTests(unittest.TestCase):
|
|||
|
||||
|
||||
class DurationParseTests(unittest.TestCase):
|
||||
|
||||
def test_parse_python_format(self):
|
||||
timedeltas = [
|
||||
timedelta(days=4, minutes=15, seconds=30, milliseconds=100), # fractions of seconds
|
||||
timedelta(hours=10, minutes=15, seconds=30), # hours, minutes, seconds
|
||||
timedelta(days=4, minutes=15, seconds=30), # multiple days
|
||||
timedelta(days=1, minutes=00, seconds=00), # single day
|
||||
timedelta(days=-4, minutes=15, seconds=30), # negative durations
|
||||
timedelta(minutes=15, seconds=30), # minute & seconds
|
||||
timedelta(seconds=30), # seconds
|
||||
]
|
||||
for delta in timedeltas:
|
||||
self.assertEqual(parse_duration(format(delta)), delta)
|
||||
|
||||
def test_seconds(self):
|
||||
self.assertEqual(parse_duration('30'), timedelta(seconds=30))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue