Conditions | 2 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | package solr |
||
16 | func TestCreateConfig(t *testing.T) { |
||
17 | client := NewClient() |
||
18 | _, err := client.Config.Create(context.Background(), CreateConfig{ |
||
19 | Create: Config{ |
||
20 | Name: "identify-events.CREATE", |
||
21 | BaseConfigSet: "identify-events", |
||
22 | }, |
||
23 | }) |
||
24 | if err != nil { |
||
25 | t.Errorf("failed to create config %v", err) |
||
26 | } |
||
44 |