(self)
| 809 | self.check_register(unregister=True) |
| 810 | |
| 811 | def test_register_file(self): |
| 812 | with temporary_filename() as filename: |
| 813 | self.check_register(filename=filename) |
| 814 | |
| 815 | @unittest.skipIf(sys.platform == "win32", |
| 816 | "subprocess doesn't support pass_fds on Windows") |
nothing calls this directly
no test coverage detected