mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
231eaf00e6
This way it can be called without instantiating the class.
29 lines
934 B
Python
29 lines
934 B
Python
#!/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
|
|
from svtplay_dl.service.svtplay import Svtplay
|
|
|
|
class handlesTest(unittest.TestCase):
|
|
|
|
def handles_svtplay_se_test(self):
|
|
self.assertTrue(Svtplay.handles(
|
|
"http://www.svtplay.se/video/1090393/del-9"))
|
|
|
|
def handles_svt_se_test(self):
|
|
self.assertTrue(Svtplay.handles(
|
|
"http://www.svt.se/nyheter/sverige/det-ar-en-dodsfalla"))
|
|
|
|
def handles_oppetarkiv_se_test(self):
|
|
self.assertTrue(Svtplay.handles(
|
|
"http://www.oppetarkiv.se/video/1129844/jacobs-stege-avsnitt-1-av-1"))
|
|
|
|
def handles_dn_se_test(self):
|
|
self.assertFalse(Svtplay.handles(
|
|
"http://www.dn.se/nyheter/sverige/det-ar-en-dodsfalla"))
|