aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/test_randominfo.py
diff options
context:
space:
mode:
authorgarret <garret@airmail.cc>2024-04-02 08:53:55 +0100
committergarret <garret@airmail.cc>2024-04-02 08:53:55 +0100
commita285500fbcf69cbedf2df5cf028abeba1108ea50 (patch)
tree90acb655fd74bdb289801855bdcca6c86ab2c899 /tests/test_randominfo.py
parent69fff170663d6e2d258edca7503b2e7897227a76 (diff)
downloadyt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.gz
yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.bz2
yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.zip
sort out package "building" and metadatav1.0
Diffstat (limited to 'tests/test_randominfo.py')
-rwxr-xr-xtests/test_randominfo.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test_randominfo.py b/tests/test_randominfo.py
new file mode 100755
index 0000000..bd71fdc
--- /dev/null
+++ b/tests/test_randominfo.py
@@ -0,0 +1,14 @@
+#!/usr/bin/env python3
+import unittest
+
+from yt_dlp_plugins.extractor import radiko
+from yt_dlp import YoutubeDL
+
+
+ie = radiko._RadikoBaseIE()
+ydl = YoutubeDL(auto_init=False)
+ie.set_downloader(ydl)
+
+info = ie._generate_random_info()
+print("random device info")
+print(info)