(self)
| 851 | """Unit tests for fileinput.hook_compressed()""" |
| 852 | |
| 853 | def setUp(self): |
| 854 | self.fake_open = InvocationRecorder() |
| 855 | |
| 856 | def test_empty_string(self): |
| 857 | self.do_test_use_builtin_open_text("", "r") |
nothing calls this directly
no test coverage detected