()
| 1156 | |
| 1157 | #[test] |
| 1158 | fn test_parse_todo_filename() { |
| 1159 | let (workspace, agent) = parse_todo_filename("abc123-agent-def456.json"); |
| 1160 | assert_eq!(workspace, "abc123"); |
| 1161 | assert_eq!(agent, "def456"); |
| 1162 | |
| 1163 | let (workspace, agent) = parse_todo_filename("simple.json"); |
| 1164 | assert_eq!(workspace, "simple"); |
| 1165 | assert_eq!(agent, "unknown"); |
| 1166 | } |
| 1167 | |
| 1168 | #[test] |
| 1169 | fn test_json_value_to_glue_value() { |
nothing calls this directly
no test coverage detected