mirror of https://github.com/peter4431/rq.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
628 B
Python
18 lines
628 B
Python
8 years ago
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import (absolute_import, division, print_function,
|
||
|
unicode_literals)
|
||
|
|
||
|
from tests import RQTestCase
|
||
|
from rq.utils import parse_timeout
|
||
|
|
||
|
|
||
|
class TestUtils(RQTestCase):
|
||
|
def test_parse_timeout(self):
|
||
|
"""Ensure function parse_timeout works correctly"""
|
||
|
self.assertEqual(12, parse_timeout(12))
|
||
|
self.assertEqual(12, parse_timeout('12'))
|
||
|
self.assertEqual(12, parse_timeout('12s'))
|
||
|
self.assertEqual(720, parse_timeout('12m'))
|
||
|
self.assertEqual(3600, parse_timeout('1h'))
|
||
|
self.assertEqual(3600, parse_timeout('1H'))
|