(t *testing.T)
| 156 | } |
| 157 | |
| 158 | func TestDeletePartialMatch(t *testing.T) { |
| 159 | vec := NewGaugeVec( |
| 160 | GaugeOpts{ |
| 161 | Name: "test", |
| 162 | Help: "helpless", |
| 163 | }, |
| 164 | []string{"l1", "l2", "l3"}, |
| 165 | ) |
| 166 | testDeletePartialMatch(t, vec) |
| 167 | } |
| 168 | |
| 169 | func TestDeletePartialMatchWithConstraints(t *testing.T) { |
| 170 | vec := V2.NewGaugeVec(GaugeVecOpts{ |
nothing calls this directly
no test coverage detected