Kaydet (Commit) 308e18b5 authored tarafından Georg Brandl's avatar Georg Brandl

Add a minimal test for fnmatchcase().

üst a34f87f9
......@@ -44,6 +44,11 @@ class FnmatchTestCase(unittest.TestCase):
check('\nfoo', 'foo*', False)
check('\n', '*')
def test_fnmatchcase(self):
check = self.check_match
check('AbC', 'abc', 0)
check('abc', 'AbC', 0)
def test_main():
test_support.run_unittest(FnmatchTestCase)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment