SLING-8936 - add missing cases
diff --git a/src/test/java/org/apache/sling/servlets/resolver/it/ServletSelectionIT.java b/src/test/java/org/apache/sling/servlets/resolver/it/ServletSelectionIT.java
index b28b762..831e9f3 100644
--- a/src/test/java/org/apache/sling/servlets/resolver/it/ServletSelectionIT.java
+++ b/src/test/java/org/apache/sling/servlets/resolver/it/ServletSelectionIT.java
@@ -123,9 +123,13 @@
     @Test
     public void testAllExceptPathsIgnored() throws Exception {
         assertTestServlet("/allprops", "AllExceptPathsIgnored");
+        assertTestServlet("/allprops.zero", "AllExceptPathsIgnored");
         assertTestServlet("/allprops.one.two", "AllExceptPathsIgnored");
+        assertTestServlet("POST", "/allprops", "AllExceptPathsIgnored");
+        assertTestServlet("POST", "/allprops.ext", "AllExceptPathsIgnored");
         assertTestServlet("POST", "/allprops.three.four", "AllExceptPathsIgnored");
         assertTestServlet("/allprops.five.six/suffix", "AllExceptPathsIgnored");
         assertTestServlet("POST", "/allprops.seven.eight/suffix", "AllExceptPathsIgnored");
+        assertTestServlet("POST", "/allprops.nine/suffix", "AllExceptPathsIgnored");
     }
 }
\ No newline at end of file