##// END OF EJS Templates
test_path: revive match tests...
Nikita Kniazev -
Show More
@@ -390,7 +390,7 b' class TestShellGlob(unittest.TestCase):'
390 ([r'a\*', 'a*'], ['a*'] + self.filenames_start_with_a),
390 ([r'a\*', 'a*'], ['a*'] + self.filenames_start_with_a),
391 ([r'a\[012]'], ['a[012]']),
391 ([r'a\[012]'], ['a[012]']),
392 ]:
392 ]:
393 yield (self.check_match, patterns, matches)
393 self.check_match(patterns, matches)
394
394
395 @skip_if_not_win32
395 @skip_if_not_win32
396 def test_match_windows(self):
396 def test_match_windows(self):
@@ -401,7 +401,7 b' class TestShellGlob(unittest.TestCase):'
401 ([r'a\*', 'a*'], [r'a\*'] + self.filenames_start_with_a),
401 ([r'a\*', 'a*'], [r'a\*'] + self.filenames_start_with_a),
402 ([r'a\[012]'], [r'a\[012]']),
402 ([r'a\[012]'], [r'a\[012]']),
403 ]:
403 ]:
404 yield (self.check_match, patterns, matches)
404 self.check_match(patterns, matches)
405
405
406
406
407 # TODO : pytest.mark.parametrise once nose is gone.
407 # TODO : pytest.mark.parametrise once nose is gone.
General Comments 0
You need to be logged in to leave comments. Login now