1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-10 07:09:32 +00:00

[test_compat] Use compat_setenv

This commit is contained in:
Sergey M․ 2016-05-09 21:58:38 +06:00
parent fe40f9eef2
commit 1292638754
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -27,9 +27,7 @@ from youtube_dl.compat import (
class TestCompat(unittest.TestCase):
def test_compat_getenv(self):
test_str = 'тест'
os.environ['YOUTUBE-DL-TEST'] = (
test_str if sys.version_info >= (3, 0)
else test_str.encode(get_filesystem_encoding()))
compat_setenv('YOUTUBE-DL-TEST', test_str)
self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
def test_compat_setenv(self):
@ -42,11 +40,9 @@ class TestCompat(unittest.TestCase):
def test_compat_expanduser(self):
old_home = os.environ.get('HOME')
test_str = 'C:\Documents and Settings\тест\Application Data'
os.environ['HOME'] = (
test_str if sys.version_info >= (3, 0)
else test_str.encode(get_filesystem_encoding()))
compat_setenv('HOME', test_str)
self.assertEqual(compat_expanduser('~'), test_str)
os.environ['HOME'] = old_home
compat_setenv('HOME', old_home)
def test_all_present(self):
import youtube_dl.compat