mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
9 lines
346 B
Python
9 lines
346 B
Python
import ytdl
|
|
import unittest
|
|
|
|
|
|
class TestYtdl(unittest.TestCase):
|
|
def test_resolve(self):
|
|
self.assertIsNotNone(ytdl._resolve('https://youtube.com/watch?v=ygIUF678y40', {'format': 'video', 'quality': 'low'}))
|
|
self.assertIsNotNone(ytdl._resolve('https://youtube.com/watch?v=WyaEiO4hyik', {'format': 'audio', 'quality': 'high'}))
|