Remove name generation from thirdpartyresource

This commit is contained in:
Jordan Liggitt
2016-05-02 15:37:53 -04:00
parent 3c089bff41
commit 6c323a4f72
5 changed files with 110 additions and 50 deletions

View File

@@ -64,6 +64,11 @@ func (t *Tester) ClusterScope() *Tester {
return t
}
func (t *Tester) Namer(namer func(int) string) *Tester {
t.tester = t.tester.Namer(namer)
return t
}
func (t *Tester) AllowCreateOnUpdate() *Tester {
t.tester = t.tester.AllowCreateOnUpdate()
return t