2018-08-31 21:46:27 -04:00
|
|
|
use juniper_rocket::GraphQLResponse;
|
2021-07-07 06:26:22 -10:00
|
|
|
use rocket::http::Status;
|
2018-08-31 21:46:27 -04:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_graphql_response_is_public() {
|
|
|
|
let _ = GraphQLResponse(Status::Unauthorized, "Unauthorized".to_string());
|
|
|
|
}
|