(self)
| 230 | self._delete_test_data(HKEY_CURRENT_USER) |
| 231 | |
| 232 | def test_named_arguments(self): |
| 233 | self._test_named_args(HKEY_CURRENT_USER, test_key_name) |
| 234 | # Use the regular DeleteKey to clean up |
| 235 | # DeleteKeyEx takes named args and is tested separately |
| 236 | DeleteKey(HKEY_CURRENT_USER, test_key_name) |
| 237 | |
| 238 | def test_connect_registry_to_local_machine_works(self): |
| 239 | # perform minimal ConnectRegistry test which just invokes it |
nothing calls this directly
no test coverage detected