Private
Public Access
0
0

Antigravity is dog shit.

This commit is contained in:
2026-05-20 07:51:58 -04:00
parent 180dc167d2
commit e2305ff49a
15 changed files with 123 additions and 50 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ def test_context_file_entry_serialization():
p = ContextFileEntry(path="test.py", view_mode="skeleton")
d = p.to_dict()
# Check for default custom_slices
assert d == {"path": "test.py", "view_mode": "skeleton", "custom_slices": []}
assert d == {"path": "test.py", "view_mode": "skeleton", "custom_slices": [], "ast_definitions": False, "ast_mask": {}, "ast_signatures": False}
p2 = ContextFileEntry.from_dict(d)
assert p2.path == "test.py"