grpctestify 1.5.2

gRPC testing utility written in Rust
Documentation
// Basic gRPC Test File for the Greeter service

--- ADDRESS ---
localhost:4770

--- ENDPOINT ---
helloworld.Greeter/SayHello

--- PROTO ---
files: helloworld.proto
import_paths: .

--- REQUEST ---
{
  "name": "World"
}

--- RESPONSE with_asserts=true ---
{
  "message": "Hello World"
}

--- ASSERTS ---
.message == "Hello World"
@len(.message) == 11
.message contains "Hello"