diff --git a/tests/test.py b/tests/test.py index c0f3836a..8cd5b75f 100644 --- a/tests/test.py +++ b/tests/test.py @@ -12,7 +12,8 @@ from you_get.extractors import ( soundcloud, tiktok, twitter, - miaopai + miaopai, + ixigua ) @@ -65,6 +66,9 @@ 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()