AppendEqualErr TODO
(t *testing.T, errValue string, args ...interface{})
| 126 | |
| 127 | //AppendEqualErr TODO |
| 128 | func (es *ExampleString) AppendEqualErr(t *testing.T, errValue string, args ...interface{}) { |
| 129 | _, err := es.conn.Do("append", args...) |
| 130 | assert.EqualError(t, err, errValue) |
| 131 | } |
| 132 | |
| 133 | //IncrEqual verify that the return value of the incr operation is correct |
| 134 | func (es *ExampleString) IncrEqual(t *testing.T, key string) { |