you-get/tests/test.py

17 lines
300 B
Python
Raw Normal View History

2013-02-13 01:04:39 +04:00
#!/usr/bin/env python
import unittest
2017-12-07 11:35:56 +03:00
from you_get.extractors import (
2021-04-16 15:49:11 +03:00
missevan
2017-12-07 11:35:56 +03:00
)
2013-03-01 01:02:12 +04:00
2014-02-15 00:09:57 +04:00
class YouGetTests(unittest.TestCase):
2021-04-16 15:49:11 +03:00
def test_missevan(self):
missevan.download('https://www.missevan.com/sound/player?id=2853120', info_only=True)
2020-07-26 16:06:03 +03:00
if __name__ == '__main__':
unittest.main()