mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #22247: Add NNTPError to nntplib.__all__.
This commit is contained in:
parent
fc4ead2451
commit
96756b6a27
3 changed files with 16 additions and 7 deletions
|
@ -1412,11 +1412,18 @@ class MiscTests(unittest.TestCase):
|
|||
def test_ssl_support(self):
|
||||
self.assertTrue(hasattr(nntplib, 'NNTP_SSL'))
|
||||
|
||||
def test_main():
|
||||
tests = [MiscTests, NNTPv1Tests, NNTPv2Tests, CapsAfterLoginNNTPv2Tests,
|
||||
SendReaderNNTPv2Tests, NetworkedNNTPTests, NetworkedNNTP_SSLTests]
|
||||
support.run_unittest(*tests)
|
||||
|
||||
class PublicAPITests(unittest.TestCase):
|
||||
"""Ensures that the correct values are exposed in the public API."""
|
||||
|
||||
def test_module_all_attribute(self):
|
||||
self.assertTrue(hasattr(nntplib, '__all__'))
|
||||
target_api = ['NNTP', 'NNTPError', 'NNTPReplyError',
|
||||
'NNTPTemporaryError', 'NNTPPermanentError',
|
||||
'NNTPProtocolError', 'NNTPDataError', 'decode_header']
|
||||
if ssl is not None:
|
||||
target_api.append('NNTP_SSL')
|
||||
self.assertEqual(set(nntplib.__all__), set(target_api))
|
||||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
unittest.main()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue