aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_compat.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-18 23:34:46 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-11-19 00:02:24 +0100
commitf56875f2719868d191a51a1444720717c2e7e5c2 (patch)
tree11d400ce60c900f1bb629ecf2dc76b91b6b0ab8d /test/test_compat.py
parent92120217eb27d820bfba0f6a50837f111cbf80ef (diff)
downloadyoutube-dl-f56875f2719868d191a51a1444720717c2e7e5c2.zip
youtube-dl-f56875f2719868d191a51a1444720717c2e7e5c2.tar.gz
youtube-dl-f56875f2719868d191a51a1444720717c2e7e5c2.tar.bz2
[test/test_compat] Restore the old value of the HOME environment variable
If the test was run before the YoutubeIE tests (for example by running "nosetests -v test/test_compat.py test/test_download.py -m 'Youtube_1|compat_expand'"), it wrote the signatures cache to the 'C:\Documents and Settings\тест\Application Data' folder. It failed due to a problem in the cache code and the write_json_file function (fixed in f03e33b89a622af13fa5275c46b63aaa4814c499)
Diffstat (limited to 'test/test_compat.py')
-rw-r--r--test/test_compat.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_compat.py b/test/test_compat.py
index 4a7fc36..1eb454e 100644
--- a/test/test_compat.py
+++ b/test/test_compat.py
@@ -26,11 +26,13 @@ class TestCompat(unittest.TestCase):
self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
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()))
self.assertEqual(compat_expanduser('~'), test_str)
+ os.environ['HOME'] = old_home
def test_all_present(self):
import youtube_dl.compat