chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:39:17 +08:00
commit 4ed4e9ff99
1368 changed files with 334957 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
from types import SimpleNamespace
from tests.utils.hitl import RecordingEditor
def test_recording_editor_records_operations() -> None:
editor = RecordingEditor()
operation = SimpleNamespace(path="file.txt")
editor.create_file(operation)
editor.update_file(operation)
editor.delete_file(operation)
assert editor.operations == [operation, operation, operation]