mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Merged revisions 71280 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71280 | tarek.ziade | 2009-04-05 23:44:08 +0200 (Sun, 05 Apr 2009) | 1 line Fixed #1491431: distutils.filelist.glob_to_re was broken for some edge cases (detailed in the test ........
This commit is contained in:
parent
965ce87991
commit
889b0aa450
3 changed files with 28 additions and 1 deletions
23
Lib/distutils/tests/test_filelist.py
Normal file
23
Lib/distutils/tests/test_filelist.py
Normal file
|
@ -0,0 +1,23 @@
|
|||
"""Tests for distutils.filelist."""
|
||||
import unittest
|
||||
from distutils.filelist import glob_to_re
|
||||
|
||||
class FileListTestCase(unittest.TestCase):
|
||||
|
||||
def test_glob_to_re(self):
|
||||
# simple cases
|
||||
self.assertEquals(glob_to_re('foo*'), 'foo[^/]*$')
|
||||
self.assertEquals(glob_to_re('foo?'), 'foo[^/]$')
|
||||
self.assertEquals(glob_to_re('foo??'), 'foo[^/][^/]$')
|
||||
|
||||
# special cases
|
||||
self.assertEquals(glob_to_re(r'foo\\*'), r'foo\\\\[^/]*$')
|
||||
self.assertEquals(glob_to_re(r'foo\\\*'), r'foo\\\\\\[^/]*$')
|
||||
self.assertEquals(glob_to_re('foo????'), r'foo[^/][^/][^/][^/]$')
|
||||
self.assertEquals(glob_to_re(r'foo\\??'), r'foo\\\\[^/][^/]$')
|
||||
|
||||
def test_suite():
|
||||
return unittest.makeSuite(FileListTestCase)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main(defaultTest="test_suite")
|
Loading…
Add table
Add a link
Reference in a new issue