From 2b9b70b43bce95dc9d98dcf1ff109e6b13b246aa Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Fri, 9 Sep 2016 06:46:48 +0000 Subject: Issue #27106: Add test for configparser.__all__ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by Jacek KoƂodziej. The Error class is deliberately omitted because it is a generic name and of limited use. --- Lib/test/test_configparser.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Lib/test/test_configparser.py b/Lib/test/test_configparser.py index 71a8f3f..2b08198 100644 --- a/Lib/test/test_configparser.py +++ b/Lib/test/test_configparser.py @@ -2052,5 +2052,11 @@ class BlatantOverrideConvertersTestCase(unittest.TestCase): self.assertEqual(cfg['two'].getlen('one'), 5) +class MiscTestCase(unittest.TestCase): + def test__all__(self): + blacklist = {"Error"} + support.check__all__(self, configparser, blacklist=blacklist) + + if __name__ == '__main__': unittest.main() -- cgit v0.12