Example #1
0
 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
Example #2
0
 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
Example #3
0
 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()))
     self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
Example #4
0
 def test_compat_expanduser(self):
     test_str = 'C:\Documents and Settings\тест\Application Data'
     os.environ['HOME'] = test_str.encode(get_filesystem_encoding())
     self.assertEqual(compat_expanduser('~'), test_str)
Example #5
0
 def test_compat_getenv(self):
     test_str = 'тест'
     os.environ['YOUTUBE-DL-TEST'] = test_str.encode(get_filesystem_encoding())
     self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)
Example #6
0
 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()))
     self.assertEqual(compat_getenv('YOUTUBE-DL-TEST'), test_str)