mustNil is a mustDo() which expects a nil response
(tb testing.TB, c *proto.Client, args ...string)
| 95 | |
| 96 | // mustNil is a mustDo() which expects a nil response |
| 97 | func mustNil(tb testing.TB, c *proto.Client, args ...string) { |
| 98 | tb.Helper() |
| 99 | mustDo(tb, c, append(args, proto.Nil)...) |
| 100 | } |
| 101 | |
| 102 | // mustNilList is a mustDo() which expects a list nil (-1) response |
| 103 | func mustNilList(tb testing.TB, c *proto.Client, args ...string) { |
no test coverage detected