File: test_cinergroup.py

package info (click to toggle)
streamlink 8.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,564 kB
  • sloc: python: 51,188; sh: 184; makefile: 152
file content (19 lines) | stat: -rw-r--r-- 886 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from streamlink.plugins.cinergroup import CinerGroup
from tests.plugins import PluginCanHandleUrl


class TestPluginCanHandleUrlCinerGroup(PluginCanHandleUrl):
    __plugin__ = CinerGroup

    should_match_groups = [
        (("bloomberght", "https://bloomberght.com/tv"), {}),
        (("haberturk", "https://haberturk.com/canliyayin"), {}),
        (("haberturk", "https://haberturk.com/tv/canliyayin"), {}),
        (("showmax", "http://showmax.com.tr/canliyayin"), {}),
        (("showmax", "http://showmax.com.tr/canli-yayin"), {}),
        (("showturk", "https://showturk.com.tr/canli-yayin/showturk"), {}),
        (("showturk", "https://showturk.com.tr/canli-yayin"), {}),
        (("showturk", "https://showturk.com.tr/canliyayin"), {}),
        (("showtv", "https://showtv.com.tr/canli-yayin"), {}),
        (("showtv", "https://showtv.com.tr/canli-yayin/showtv"), {}),
    ]