コード例 #1
0
 def test_fnmatch_custom_normcase(self):
     normcase = lambda path: path.upper()
     p = Path('FooBar')
     assert p.fnmatch('foobar', normcase=normcase)
     assert p.fnmatch('FOO[ABC]AR', normcase=normcase)
コード例 #2
0
ファイル: test_path.py プロジェクト: jaraco/path.py
 def normcase(path):
     return path.upper()
コード例 #3
0
ファイル: test_path.py プロジェクト: louis-ng/path
 def normcase(path):
     return path.upper()