2013-03-12 20:28:53 +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
|
|
|
|
import unittest
|
2019-08-25 00:40:39 +02:00
|
|
|
|
2014-01-06 22:47:54 +01:00
|
|
|
from svtplay_dl.service.svtplay import Svtplay
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.service.tests import HandlesURLsTestMixin
|
2013-03-12 20:28:53 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-05-01 22:41:54 +02:00
|
|
|
class handlesTest(unittest.TestCase, HandlesURLsTestMixin):
|
|
|
|
service = Svtplay
|
|
|
|
urls = {
|
2019-09-06 22:49:49 +02:00
|
|
|
"ok": ["http://www.svtplay.se/video/1090393/del-9", "http://www.svt.se/nyheter/sverige/det-ar-en-dodsfalla"],
|
|
|
|
"bad": ["http://www.oppetarkiv.se/video/1129844/jacobs-stege-ep1", "http://www.dn.se/nyheter/sverige/det-ar-en-dodsfalla"],
|
2014-05-01 22:41:54 +02:00
|
|
|
}
|