[Python-checkins] r80975 - in python/branches/py3k: Lib/unittest/test/test_discovery.py
michael.foord
python-checkins at python.org
Sat May 8 15:23:31 CEST 2010
Author: michael.foord
Date: Sat May 8 15:23:31 2010
New Revision: 80975
Log:
Merged revisions 80974 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80974 | michael.foord | 2010-05-08 15:20:07 +0200 (Sat, 08 May 2010) | 1 line
Issue 7780. Adding a test for unittest test discovery from a dotted path.
........
Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/unittest/test/test_discovery.py
Modified: python/branches/py3k/Lib/unittest/test/test_discovery.py
==============================================================================
--- python/branches/py3k/Lib/unittest/test/test_discovery.py (original)
+++ python/branches/py3k/Lib/unittest/test/test_discovery.py Sat May 8 15:23:31 2010
@@ -337,5 +337,22 @@
self.assertEqual(sys.path[0], full_path)
+ def test_discovery_from_dotted_path(self):
+ loader = unittest.TestLoader()
+
+ tests = [self]
+ expectedPath = os.path.abspath(os.path.dirname(unittest.test.__file__))
+
+ self.wasRun = False
+ def _find_tests(start_dir, pattern):
+ self.wasRun = True
+ self.assertEqual(start_dir, expectedPath)
+ return tests
+ loader._find_tests = _find_tests
+ suite = loader.discover('unittest.test')
+ self.assertTrue(self.wasRun)
+ self.assertEqual(suite._tests, tests)
+
+
if __name__ == '__main__':
unittest.main()
More information about the Python-checkins
mailing list