MSetEqualErr verify that the return value of the mset operation is correct
(t *testing.T, errValue string, args ...interface{})
| 277 | |
| 278 | //MSetEqualErr verify that the return value of the mset operation is correct |
| 279 | func (es *ExampleString) MSetEqualErr(t *testing.T, errValue string, args ...interface{}) { |
| 280 | _, err := es.conn.Do("Mset", args) |
| 281 | assert.EqualError(t, err, errValue) |
| 282 | } |