(elements []ReturnValue)
| 111 | } |
| 112 | |
| 113 | func readStrings(elements []ReturnValue) (strs []string) { |
| 114 | for _, e := range elements { |
| 115 | strs = append(strs, e.String()) |
| 116 | } |
| 117 | |
| 118 | return |
| 119 | } |
| 120 | |
| 121 | func TestRPOPLPUSH(t *testing.T) { |
| 122 | c := newClient(t) |
no test coverage detected