diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-27 15:45:03 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-27 15:45:03 -0700 |
commit | bcb9d2c6793b39b165caf9e63c4803d2a28e9876 (patch) | |
tree | ac8a1a50d7949a48b1c4f6fa5e443ab394cd7ace /rust/tests | |
parent | 19eb1641eece9f03ca193417cdf244efc1a9da8a (diff) | |
download | fatcat-bcb9d2c6793b39b165caf9e63c4803d2a28e9876.tar.gz fatcat-bcb9d2c6793b39b165caf9e63c4803d2a28e9876.zip |
batch POST methods
Diffstat (limited to 'rust/tests')
-rw-r--r-- | rust/tests/test_api_server.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/rust/tests/test_api_server.rs b/rust/tests/test_api_server.rs index a973b333..c5a5a60c 100644 --- a/rust/tests/test_api_server.rs +++ b/rust/tests/test_api_server.rs @@ -163,6 +163,22 @@ fn test_post_container() { } #[test] +fn test_post_batch_container() { + let (headers, router, _conn) = setup(); + + check_response( + request::post( + "http://localhost:9411/v0/container/batch", + headers, + r#"[{"name": "test journal"}, {"name": "another test journal"}]"#, + &router, + ), + status::Created, + None, + ); // TODO: "test journal" +} + +#[test] fn test_post_creator() { let (headers, router, _conn) = setup(); |