Skip to content

Commit

Permalink
[test_compat] Use compat_setenv
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed May 9, 2016
1 parent fe40f9e commit 1292638
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions test/test_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@
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):
Expand All @@ -42,11 +40,9 @@ def test_compat_setenv(self):
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
Expand Down

0 comments on commit 1292638

Please sign in to comment.