[compat] Ensure submodules are correctly wrapped

This commit is contained in:
pukkandan 2022-04-24 21:58:18 +05:30
parent 9cd080508d
commit 9196cbfe8b
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
6 changed files with 73 additions and 22 deletions

View file

@ -7,6 +7,7 @@ import unittest
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from yt_dlp import compat
from yt_dlp.compat import (
compat_etree_fromstring,
compat_expanduser,
@ -21,6 +22,12 @@ from yt_dlp.compat import (
class TestCompat(unittest.TestCase):
def test_compat_passthrough(self):
with self.assertWarns(DeprecationWarning):
compat.compat_basestring
compat.asyncio.events # Must not raise error
def test_compat_getenv(self):
test_str = 'тест'
compat_setenv('yt_dlp_COMPAT_GETENV', test_str)