File: test_douyin.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 (14 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from streamlink.plugins.douyin import Douyin
from tests.plugins import PluginCanHandleUrl


class TestPluginCanHandleUrlDouyin(PluginCanHandleUrl):
    __plugin__ = Douyin

    should_match_groups = [
        ("https://live.douyin.com/ROOM_ID", {"room_id": "ROOM_ID"}),
    ]

    should_not_match = [
        "https://live.douyin.com",
    ]