Add integration test for glob support

This commit is contained in:
Jingfang Liu
2018-06-27 11:01:49 -07:00
parent 6392e6629f
commit 2a3f09a2f0
8 changed files with 40 additions and 26 deletions

View File

@@ -61,3 +61,8 @@ func NewReferencePathConfig(gvk schema.GroupVersionKind, pathconfigs []PathConfi
pathConfigs: pathconfigs,
}
}
// GVK returns the Group version kind of a Reference PathConfig
func (r ReferencePathConfig) GVK() string {
return r.referencedGVK.String()
}