(self)
| 447 | class RemoteWinregTests(BaseWinregTests): |
| 448 | |
| 449 | def test_remote_registry_works(self): |
| 450 | remote_key = ConnectRegistry(REMOTE_NAME, HKEY_CURRENT_USER) |
| 451 | self._test_all(remote_key) |
| 452 | |
| 453 | |
| 454 | @unittest.skipUnless(WIN64_MACHINE, "x64 specific registry tests") |
nothing calls this directly
no test coverage detected