must1 is a mustDo() which expects a `1` response
(tb testing.TB, c *proto.Client, args ...string)
| 113 | |
| 114 | // must1 is a mustDo() which expects a `1` response |
| 115 | func must1(tb testing.TB, c *proto.Client, args ...string) { |
| 116 | tb.Helper() |
| 117 | mustDo(tb, c, append(args, proto.Int(1))...) |
| 118 | } |
| 119 | |
| 120 | // execute a Read() |
| 121 | func mustRead(tb testing.TB, c *proto.Client, want string) { |
no test coverage detected