93deb2862a
* Make juniper_rocket_async replace juniper_rocket Now that rocket v0.5 is async and in rc, merge the two juniper projects. Fixes https://github.com/graphql-rust/juniper/issues/947. * Remove println
7 lines
192 B
Rust
7 lines
192 B
Rust
use juniper_rocket::GraphQLResponse;
|
|
use rocket::http::Status;
|
|
|
|
#[test]
|
|
fn test_graphql_response_is_public() {
|
|
let _ = GraphQLResponse(Status::Unauthorized, "Unauthorized".to_string());
|
|
}
|