mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[test_compat] Add test for compat_shlex_split
This commit is contained in:
		| @@ -14,6 +14,7 @@ from youtube_dl.utils import get_filesystem_encoding | |||||||
| from youtube_dl.compat import ( | from youtube_dl.compat import ( | ||||||
|     compat_getenv, |     compat_getenv, | ||||||
|     compat_expanduser, |     compat_expanduser, | ||||||
|  |     compat_shlex_split, | ||||||
|     compat_urllib_parse_unquote, |     compat_urllib_parse_unquote, | ||||||
|     compat_urllib_parse_unquote_plus, |     compat_urllib_parse_unquote_plus, | ||||||
| ) | ) | ||||||
| @@ -67,5 +68,8 @@ class TestCompat(unittest.TestCase): | |||||||
|         self.assertEqual(compat_urllib_parse_unquote_plus('abc%20def'), 'abc def') |         self.assertEqual(compat_urllib_parse_unquote_plus('abc%20def'), 'abc def') | ||||||
|         self.assertEqual(compat_urllib_parse_unquote_plus('%7e/abc+def'), '~/abc def') |         self.assertEqual(compat_urllib_parse_unquote_plus('%7e/abc+def'), '~/abc def') | ||||||
|  |  | ||||||
|  |     def test_compat_shlex(self): | ||||||
|  |         self.assertEqual(compat_shlex_split('-option "one two"'), ['-option', 'one two']) | ||||||
|  |  | ||||||
| if __name__ == '__main__': | if __name__ == '__main__': | ||||||
|     unittest.main() |     unittest.main() | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user