(name string)
| 14 | ) |
| 15 | |
| 16 | func testMetadata(name string) Metadata { |
| 17 | return Metadata{ |
| 18 | Endpoints: map[string]any{ |
| 19 | "ep1": endpoint{Foo: "bar"}, |
| 20 | }, |
| 21 | Metadata: context{Bar: "baz"}, |
| 22 | Name: name, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func TestMetadataGetNotExisting(t *testing.T) { |
| 27 | testee := metadataStore{root: t.TempDir(), config: testCfg} |
no outgoing calls
no test coverage detected
searching dependent graphs…