From b3252a318ec2aa47b101e54c63aad0070ec37b2c Mon Sep 17 00:00:00 2001 From: wang1365 Date: Thu, 4 Jan 2018 09:40:23 +0800 Subject: [PATCH] add ut for miaopai bug fix --- tests/test.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test.py b/tests/test.py index d2cf4c40..640de737 100644 --- a/tests/test.py +++ b/tests/test.py @@ -40,6 +40,11 @@ class YouGetTests(unittest.TestCase): info_only=True ) + yixia.download( + 'http://m.miaopai.com/show/channel/RjJnaplo7c~T~1BhGrzVWUVKg3dK4A8wCy~ucg__?from=groupmessage&isappinstalled=0', # noqa + info_only=True + ) + def test_bilibili(self): bilibili.download( 'https://www.bilibili.com/video/av16907446/', info_only=True @@ -54,5 +59,6 @@ class YouGetTests(unittest.TestCase): info_only=True ) + if __name__ == '__main__': unittest.main()