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
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
2014-05-01 22:41:54 +02:00
|
|
|
from svtplay_dl.service.tests import HandlesURLsTestMixin
|
2014-01-06 22:47:54 +01:00
|
|
|
from svtplay_dl.service.svtplay import Svtplay
|
2013-03-12 20:28:53 +01:00
|
|
|
|
2014-05-01 22:41:54 +02:00
|
|
|
class handlesTest(unittest.TestCase, HandlesURLsTestMixin):
|
|
|
|
service = Svtplay
|
|
|
|
urls = {
|
|
|
|
'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"
|
|
|
|
]
|
|
|
|
}
|