summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2013-02-11 00:28:02 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2013-02-11 00:28:02 (GMT)
commit4e08f786f042f09454939a1a7a16ccea70488093 (patch)
tree28b1604a92c438f7393920472bc750fec9468e08 /Lib/unittest/test
parenta7b5e82ff03a25c35ea0e0b124a7d113ffa0cb3a (diff)
parenta23a39c07d3027e5139cc6127783cab23ca1a511 (diff)
downloadcpython-4e08f786f042f09454939a1a7a16ccea70488093.zip
cpython-4e08f786f042f09454939a1a7a16ccea70488093.tar.gz
cpython-4e08f786f042f09454939a1a7a16ccea70488093.tar.bz2
Merge. Closes issue 17052.
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r--Lib/unittest/test/test_discovery.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/unittest/test/test_discovery.py b/Lib/unittest/test/test_discovery.py
index e688f8e..eba269f 100644
--- a/Lib/unittest/test/test_discovery.py
+++ b/Lib/unittest/test/test_discovery.py
@@ -253,12 +253,26 @@ class TestDiscovery(unittest.TestCase):
program = TestableTestProgram()
program.usageExit = usageExit
+ program.testLoader = None
with self.assertRaises(Stop):
# too many args
program._do_discovery(['one', 'two', 'three', 'four'])
+ def test_command_line_handling_do_discovery_uses_default_loader(self):
+ program = object.__new__(unittest.TestProgram)
+
+ class Loader(object):
+ args = []
+ def discover(self, start_dir, pattern, top_level_dir):
+ self.args.append((start_dir, pattern, top_level_dir))
+ return 'tests'
+
+ program.testLoader = Loader
+ program._do_discovery(['-v'])
+ self.assertEqual(Loader.args, [('.', 'test*.py', None)])
+
def test_command_line_handling_do_discovery_calls_loader(self):
program = TestableTestProgram()