(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestForbiddenNamespace(t *testing.T) { |
| 65 | ctx := Given(t) |
| 66 | ctx. |
| 67 | Path(guestbookPath). |
| 68 | SetAppNamespace("forbidden"). |
| 69 | When(). |
| 70 | IgnoreErrors(). |
| 71 | CreateApp(). |
| 72 | Then(). |
| 73 | Expect(DoesNotExist()) |
| 74 | } |
| 75 | |
| 76 | func TestDeletingNamespacedAppStuckInSync(t *testing.T) { |
| 77 | ctx := Given(t) |
nothing calls this directly
no test coverage detected