use juniper_rocket_async::GraphQLResponse;
use rocket::http::Status;
#[test]
fn test_graphql_response_is_public() {
let _ = GraphQLResponse(Status::Unauthorized, "Unauthorized".to_string());
}