MCPcopy Create free account
hub / github.com/douglance/devsql / test_parse_todo_filename

Function test_parse_todo_filename

crates/ccql/src/sql/composite_storage.rs:1158–1166  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

parse_todo_filenameFunction · 0.85

Tested by

no test coverage detected