1
0
mirror of https://github.com/actix/examples synced 2025-06-26 17:17:42 +02:00

add mysql example to workspace

This commit is contained in:
Rob Ede
2023-07-17 17:55:17 +01:00
parent 8e736d9ea4
commit dfd925d4c1
18 changed files with 312 additions and 171 deletions

View File

@ -106,6 +106,6 @@ mod tests {
assert_eq!(resp.status(), http::StatusCode::OK);
let body_bytes = to_bytes(resp.into_body()).await.unwrap();
assert_eq!(body_bytes, r##"{"name":"my-name","number":43}"##);
assert_eq!(body_bytes, r#"{"name":"my-name","number":43}"#);
}
}