2014-05-01 19:51:21 +02: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
|
|
|
|
import unittest
|
2019-08-25 00:40:39 +02:00
|
|
|
|
2014-05-01 19:51:21 +02:00
|
|
|
from svtplay_dl.service.oppetarkiv import OppetArkiv
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.service.tests import HandlesURLsTestMixin
|
2014-05-01 19:51:21 +02:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-05-01 22:41:54 +02:00
|
|
|
class handlesTest(unittest.TestCase, HandlesURLsTestMixin):
|
|
|
|
service = OppetArkiv
|
2019-09-06 22:49:49 +02:00
|
|
|
urls = {"ok": ["http://www.oppetarkiv.se/video/1129844/jacobs-stege-avsnitt-1-av-1"], "bad": ["http://www.svtplay.se/video/1090393/del-9"]}
|