##// END OF EJS Templates
remove/deduplicate tests with u-prefix
Matthias Bussonnier -
Show More
@@ -61,12 +61,11 b' def test_find_cmd_fail():'
61 "argstr, argv",
61 "argstr, argv",
62 [
62 [
63 ("hi", ["hi"]),
63 ("hi", ["hi"]),
64 (u"hi", [u"hi"]),
65 ("hello there", ["hello", "there"]),
64 ("hello there", ["hello", "there"]),
66 # \u01ce == \N{LATIN SMALL LETTER A WITH CARON}
65 # \u01ce == \N{LATIN SMALL LETTER A WITH CARON}
67 # Do not use \N because the tests crash with syntax error in
66 # Do not use \N because the tests crash with syntax error in
68 # some cases, for example windows python2.6.
67 # some cases, for example windows python2.6.
69 (u"h\u01cello", [u"h\u01cello"]),
68 ("h\u01cello", ["h\u01cello"]),
70 ('something "with quotes"', ["something", '"with quotes"']),
69 ('something "with quotes"', ["something", '"with quotes"']),
71 ],
70 ],
72 )
71 )
@@ -80,9 +79,8 b' def test_arg_split(argstr, argv):'
80 "argstr,argv",
79 "argstr,argv",
81 [
80 [
82 ("hi", ["hi"]),
81 ("hi", ["hi"]),
83 (u"hi", [u"hi"]),
84 ("hello there", ["hello", "there"]),
82 ("hello there", ["hello", "there"]),
85 (u"h\u01cello", [u"h\u01cello"]),
83 ("h\u01cello", ["h\u01cello"]),
86 ('something "with quotes"', ["something", "with quotes"]),
84 ('something "with quotes"', ["something", "with quotes"]),
87 ],
85 ],
88 )
86 )
General Comments 0
You need to be logged in to leave comments. Login now