Merge branch 'wt/review-002-projection-truthfulness'

This commit is contained in:
2026-08-30 23:08:42 +00:00
5 changed files with 493 additions and 115 deletions
+3 -2
View File
@@ -889,9 +889,10 @@ mod tests {
let text = String::from_utf8_lossy(&response);
assert!(text.starts_with("HTTP/1.1 200 OK"), "got: {text}");
assert!(text.contains("application/json"), "got: {text}");
// The 6-endpoint gateway doc with the version from the /publish addition.
// The 6-endpoint gateway doc; the version tracks the projection
// truthfulness pass.
assert!(text.contains("\"/publish\""), "publish path in doc");
assert!(text.contains("1.2.0"), "info.version 1.2.0 in doc");
assert!(text.contains("1.3.0"), "info.version 1.3.0 in doc");
assert!(text.contains("gatewayPublish"), "publish operationId");
let _ = server_task.await;