()
| 477 | |
| 478 | #[test] |
| 479 | fn test_unhashed_with_reasoning() { |
| 480 | let data = UnhashedTurnData::new("s", 1, "jsonl", vec![], &[]).with_reasoning(TurnReasoning { |
| 481 | intent: "test".into(), |
| 482 | outcome: "done".into(), |
| 483 | learnings: Learnings::default(), |
| 484 | friction: vec![], |
| 485 | open_items: vec![], |
| 486 | }); |
| 487 | assert!(data.has_reasoning()); |
| 488 | } |
| 489 | |
| 490 | #[test] |
| 491 | fn test_unhashed_serde_roundtrip() { |
nothing calls this directly
no test coverage detected