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