(ps []string)
| 30 | } |
| 31 | |
| 32 | func splitPreds(ps []string) []string { |
| 33 | for i, p := range ps { |
| 34 | ps[i] = x.ParseAttr(strings.SplitN(p, "-", 2)[1]) |
| 35 | } |
| 36 | |
| 37 | return ps |
| 38 | } |
| 39 | |
| 40 | func TestUpsertExample0(t *testing.T) { |
| 41 | require.NoError(t, dropAll()) |
no test coverage detected