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