diff --git a/src/test/java/de/svs/doido/mongo/ConfigmapApiTest.java b/src/test/java/de/svs/doido/mongo/ConfigmapApiTest.java index 8f3ca00..7b185fd 100644 --- a/src/test/java/de/svs/doido/mongo/ConfigmapApiTest.java +++ b/src/test/java/de/svs/doido/mongo/ConfigmapApiTest.java @@ -55,12 +55,21 @@ public void after() { @Test - void testInteractionWithAPIServerForConfigmaps() { + void testInteractionWithGetConfigmaps() { given() .when().get("/configmap/namespaceA/test") .then() .statusCode(200) .body("size()", is(2)); } + + + @Test + void testInteractionWithPostConfigmaps1() { + given() + .when().post("/configmap/namespaceA/tes2t") + .then() + .statusCode(200) + } } \ No newline at end of file