(t *testing.T)
| 132 | } |
| 133 | |
| 134 | func TestGetDefaultContextStorageInfo(t *testing.T) { |
| 135 | s := testStore(t, testDefaultMetadata(), store.ContextTLSData{}) |
| 136 | result := s.GetStorageInfo(DefaultContextName) |
| 137 | assert.Equal(t, "<IN MEMORY>", result.MetadataPath) |
| 138 | assert.Equal(t, "<IN MEMORY>", result.TLSPath) |
| 139 | } |
| 140 | |
| 141 | func TestGetDefaultContextMetadata(t *testing.T) { |
| 142 | meta := testDefaultMetadata() |
nothing calls this directly
no test coverage detected
searching dependent graphs…