(self)
| 795 | parse_file(filename, limited_capi=False) |
| 796 | |
| 797 | def test_parse_file_no_extension(self) -> None: |
| 798 | self.expect_parsing_failure( |
| 799 | filename="foo", |
| 800 | expected_error="Can't extract file type for file 'foo'" |
| 801 | ) |
| 802 | |
| 803 | def test_parse_file_strange_extension(self) -> None: |
| 804 | filenames_to_errors = { |
nothing calls this directly
no test coverage detected