package fluxcd import ( "testing" ) func TestLoadManifests(t *testing.T) { objs, err := LoadManifests() if err != nil { t.Fatal("unexpected error while loading manifests", err) } if len(objs) == 0 { t.Fatal("no objects returned by LoadManifests, there should be at least one") } }