1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-28 06:04:17 +01:00
svtplay-dl/lib/svtplay_dl/tests/subtitle.py

31 lines
987 B
Python
Raw Normal View History

2013-03-12 19:53:56 +01:00
#!/usr/bin/python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
# The unittest framwork doesn't play nice with pylint:
# pylint: disable-msg=C0103
from __future__ import absolute_import
import unittest
2014-06-03 16:40:19 +02:00
import svtplay_dl.subtitle
2013-03-12 19:53:56 +01:00
2015-09-15 20:10:32 +02:00
2013-03-12 19:53:56 +01:00
class timestrTest(unittest.TestCase):
# pylint seem to think that svtplay_dl.subtitle refers to a
# class, not a module. Maybe it's confused, and got it mixed
# up with svtplay_dl.subtitle.subtitle? The tests pass, so
# i have the truth on my side.
# pylint: disable-msg=no-member
2013-03-12 19:53:56 +01:00
def test_1(self):
2016-06-03 00:09:11 +02:00
self.assertEqual(svtplay_dl.subtitle.timestr(1), "00:00:00,001")
2013-03-12 19:53:56 +01:00
def test_100(self):
2016-06-03 00:09:11 +02:00
self.assertEqual(svtplay_dl.subtitle.timestr(100), "00:00:00,100")
2013-03-12 19:53:56 +01:00
def test_3600(self):
2016-06-03 00:09:11 +02:00
self.assertEqual(svtplay_dl.subtitle.timestr(3600), "00:00:03,600")
2013-03-12 19:53:56 +01:00
def test_3600000(self):
2016-06-03 00:09:11 +02:00
self.assertEqual(svtplay_dl.subtitle.timestr(3600000), "01:00:00,000")