Update test.py

add ixigua test
This commit is contained in:
Jiajie Han 2023-03-02 15:45:10 +08:00 committed by GitHub
parent c2d8d221fc
commit 3bb85fa262
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,8 @@ from you_get.extractors import (
soundcloud,
tiktok,
twitter,
miaopai
miaopai,
ixigua
)
@ -66,5 +67,8 @@ class YouGetTests(unittest.TestCase):
def test_weibo(self):
miaopai.download('https://video.weibo.com/show?fid=1034:4825403706245135', info_only=True)
def test_ixigua(self):
ixigua.download('https://www.ixigua.com/7205081515355537957', info_only=True)
if __name__ == '__main__':
unittest.main()