A minimal, liftable memory spine (uid + kind + stable createdAt).
()
| 290 | |
| 291 | /// A minimal, liftable memory spine (uid + kind + stable createdAt). |
| 292 | fn memory_inputs() -> MemLiftInputs { |
| 293 | let frontmatter = serde_json::json!({ |
| 294 | "uid": "01j8zc4r8t", |
| 295 | "memoryKind": "constraint", |
| 296 | "status": "active", |
| 297 | "createdAt": "2026-07-01T00:00:00+00:00", |
| 298 | }) |
| 299 | .as_object() |
| 300 | .unwrap() |
| 301 | .clone(); |
| 302 | MemLiftInputs { |
| 303 | frontmatter, |
| 304 | body: ":::memory\nThe durable fact.\n:::".to_string(), |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | #[test] |
| 309 | fn freeform_memory_detection_does_not_hide_partial_canonical_records() { |
no test coverage detected