]> granicus.if.org Git - python/commitdiff
#17066: test_robotparser now works with unittest test discovery. Patch by Zachary...
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 12 Mar 2013 05:49:12 +0000 (07:49 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 12 Mar 2013 05:49:12 +0000 (07:49 +0200)
Lib/test/test_robotparser.py
Misc/NEWS

index 178761dd381b23aadbd419b2503974919853645d..8c09e7452c562708acbcd7ba38f1d72af7634a81 100644 (file)
@@ -6,7 +6,10 @@ from urllib.request import urlopen
 from test import support
 
 class RobotTestCase(unittest.TestCase):
-    def __init__(self, index, parser, url, good, agent):
+    def __init__(self, index=None, parser=None, url=None, good=None, agent=None):
+        # workaround to make unittest discovery work (see #17066)
+        if not isinstance(index, int):
+            return
         unittest.TestCase.__init__(self)
         if good:
             self.str = "RobotTest(%d, good, %s)" % (index, url)
@@ -269,10 +272,11 @@ class NetworkTestCase(unittest.TestCase):
             self.assertTrue(
                 parser.can_fetch("*", "http://www.python.org/robots.txt"))
 
-def test_main():
-    support.run_unittest(NetworkTestCase)
-    support.run_unittest(tests)
+def load_tests(loader, suite, pattern):
+    suite = unittest.makeSuite(NetworkTestCase)
+    suite.addTest(tests)
+    return suite
 
 if __name__=='__main__':
-    support.verbose = 1
-    test_main()
+    support.use_resources = ['network']
+    unittest.main()
index 11ab410ce18a5235b5e044642b24385fea6f981d..fd10f5ced50d3635f5bfe56731b5f259ee082e86 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -662,6 +662,9 @@ Tests
 
 - Issue #15539: Added regression tests for Tools/scripts/pindent.py.
 
+- Issue #17066: test_robotparser now works with unittest test discovery.
+  Patch by Zachary Ware.
+
 - Issue #17334: test_index now works with unittest test discovery.
   Patch by Zachary Ware.