Commit 8ac147d6 authored by Jason R. Coombs's avatar Jason R. Coombs

Backed out changeset cc86e9e102e8

parent 97eda155
......@@ -9,7 +9,7 @@ from distutils.filelist import glob_to_re, translate_pattern, FileList
from distutils import filelist
import test.support
from test.support import captured_stdout
from test.support import captured_stdout, run_unittest
from distutils.tests import support
MANIFEST_IN = """\
......@@ -329,5 +329,12 @@ class FindAllTestCase(unittest.TestCase):
self.assertEqual(filelist.findall(temp_dir), expected)
def test_suite():
return unittest.TestSuite([
unittest.makeSuite(FileListTestCase),
unittest.makeSuite(FindAllTestCase),
])
if __name__ == "__main__":
unittest.main()
run_unittest(test_suite())
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