(t *testing.T, db *DB, bucket string, key int, isLeft bool, values ...int)
| 33 | } |
| 34 | |
| 35 | func pushDataByValues(t *testing.T, db *DB, bucket string, key int, isLeft bool, values ...int) { |
| 36 | for _, v := range values { |
| 37 | txPush(t, db, bucket, testutils.GetTestBytes(key), testutils.GetTestBytes(v), isLeft, nil, nil) |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | func TestTx_RPush(t *testing.T) { |
| 42 | bucket := "bucket" |
no test coverage detected