File: test_ltv_lsm_lv.py

package info (click to toggle)
streamlink 8.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,608 kB
  • sloc: python: 51,763; sh: 184; makefile: 152
file content (20 lines) | stat: -rw-r--r-- 787 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
20
from streamlink.plugins.ltv_lsm_lv import LtvLsmLv
from tests.plugins import PluginCanHandleUrl


class TestPluginCanHandleUrlLtvLsmLv(PluginCanHandleUrl):
    __plugin__ = LtvLsmLv

    should_match = [
        "https://ltv.lsm.lv/lv/tiesraide/ltv1",
        "https://ltv.lsm.lv/lv/tiesraide/ltv7",
        "https://ltv.lsm.lv/lv/tiesraide/visiem",
        "https://ltv.lsm.lv/lv/tiesraide/lr1",
        "https://ltv.lsm.lv/lv/tiesraide/lr2",
        "https://ltv.lsm.lv/lv/tiesraide/lr3",
        "https://ltv.lsm.lv/lv/tiesraide/lr4",
        "https://ltv.lsm.lv/lv/tiesraide/lr5",
        "https://ltv.lsm.lv/lv/tiesraide/lr6",
        "https://replay.lsm.lv/lv/tiesraide/ltv7/sporta-studija-aizkulises",
        "https://replay.lsm.lv/ru/efir/ltv7/sporta-studija-aizkulises",
    ]