(filePath string)
| 204 | } |
| 205 | |
| 206 | func ExpectLocalFileNotFound(filePath string) { |
| 207 | _, err := os.Stat(filePath) |
| 208 | gomega.ExpectWithOffset(1, os.IsNotExist(err)).Should(gomega.BeTrue()) |
| 209 | } |
| 210 | |
| 211 | func ExpectDeleteNamespace(k *kube.KubeHelper, name string) { |
| 212 | err := k.DeleteNamespace(name) |