diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-22 19:58:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-22 19:58:59 (GMT) |
commit | bb11c3c967afaf263e00844d4ab461b7fafd6d36 (patch) | |
tree | ad53549aa12c0ed11c55700f18415f0df83d10e6 /Lib/test/test_support.py | |
parent | 803ddd8ce22f0de3ab42fb98a225a704c000ef06 (diff) | |
download | cpython-bb11c3c967afaf263e00844d4ab461b7fafd6d36.zip cpython-bb11c3c967afaf263e00844d4ab461b7fafd6d36.tar.gz cpython-bb11c3c967afaf263e00844d4ab461b7fafd6d36.tar.bz2 |
bpo-31324: Fix test.support.set_match_tests(None) (#4505)
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r-- | Lib/test/test_support.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 4756def..e06f7b8 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -500,6 +500,11 @@ class TestSupport(unittest.TestCase): self.assertTrue(support.match_test(test_access)) self.assertTrue(support.match_test(test_chdir)) + # match all using None + support.set_match_tests(None) + self.assertTrue(support.match_test(test_access)) + self.assertTrue(support.match_test(test_chdir)) + # match the full test identifier support.set_match_tests([test_access.id()]) self.assertTrue(support.match_test(test_access)) |