(self)
| 1956 | self.assertIs(cm.exception.__suppress_context__, True) |
| 1957 | |
| 1958 | def test_remove_option(self): |
| 1959 | config = configparser.ConfigParser() |
| 1960 | with self.assertRaises(configparser.NoSectionError) as cm: |
| 1961 | config.remove_option('Section1', 'an_int') |
| 1962 | self.assertIs(cm.exception.__suppress_context__, True) |
| 1963 | |
| 1964 | |
| 1965 | class ConvertersTestCase(BasicTestCase, unittest.TestCase): |
nothing calls this directly
no test coverage detected