initial commit

This commit is contained in:
mpostma
2020-12-12 13:32:06 +01:00
commit 8c0ab106c7
54 changed files with 13428 additions and 0 deletions

11
tests/health.rs Normal file
View File

@ -0,0 +1,11 @@
mod common;
#[actix_rt::test]
async fn test_healthyness() {
let mut server = common::Server::with_uid("movies");
// Check that the server is healthy
let (_response, status_code) = server.get_health().await;
assert_eq!(status_code, 204);
}