(self)
| 1950 | self.assertIs(cm.exception.__suppress_context__, True) |
| 1951 | |
| 1952 | def test_missing_section(self): |
| 1953 | config = configparser.ConfigParser() |
| 1954 | with self.assertRaises(configparser.NoSectionError) as cm: |
| 1955 | config.set('Section1', 'an_int', '15') |
| 1956 | self.assertIs(cm.exception.__suppress_context__, True) |
| 1957 | |
| 1958 | def test_remove_option(self): |
| 1959 | config = configparser.ConfigParser() |
nothing calls this directly
no test coverage detected