From 48f8670b095012b383d324cd1e429fa7f2ab2c9a Mon Sep 17 00:00:00 2001 From: Jsbd Date: Tue, 10 Jul 2018 18:29:40 +0800 Subject: [PATCH] mgtv download went wrong. --- tests/test.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test.py b/tests/test.py index 6562d7ca..541da3e5 100644 --- a/tests/test.py +++ b/tests/test.py @@ -7,6 +7,7 @@ from you_get.extractors import ( magisto, youtube, bilibili, + mgtv ) @@ -39,6 +40,14 @@ class YouGetTests(unittest.TestCase): 'https://www.bilibili.com/video/av13228063/', info_only=True ) + def test_mgtv(self): + mgtv.download( + 'https://www.mgtv.com/b/319123/4154260.html', info_only=True + ) + mgtv.download( + 'https://www.mgtv.com/b/319123/4154260.html', info_only=True + ) + if __name__ == '__main__': unittest.main()