(self, super_reset_method, super_init_method)
| 1240 | @patch("_markupbase.ParserBase.__init__") |
| 1241 | @patch("_markupbase.ParserBase.reset") |
| 1242 | def test_base_class_methods_called(self, super_reset_method, super_init_method): |
| 1243 | with patch('_markupbase.ParserBase') as parser_base: |
| 1244 | EventCollector() |
| 1245 | super_init_method.assert_called_once() |
| 1246 | super_reset_method.assert_called_once() |
| 1247 | |
| 1248 | |
| 1249 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected