(t *testing.T)
| 63 | } |
| 64 | |
| 65 | func TestLoadBootstrapContent_MissingFiles(t *testing.T) { |
| 66 | bl := NewBootstrapLoader(t.TempDir(), t.TempDir(), testLogger()) |
| 67 | content := bl.LoadBootstrapContent() |
| 68 | if content != "" { |
| 69 | t.Errorf("expected empty content for missing files, got %q", content) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | func TestCacheInvalidation(t *testing.T) { |
| 74 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected