summaryrefslogtreecommitdiff
path: root/tests/Unit/RouterTest.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:33 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:33 +0100
commit7144cad2df09b68a7359955242aabef746a826b3 (patch)
tree8d53162bb19aba1e49f1cdbfb224992152841b2c /tests/Unit/RouterTest.php
parentfdb23965a0daf06e85de4fc11a83e5f96656cc81 (diff)
Setup structure for storing middleware and added test todos
Diffstat (limited to 'tests/Unit/RouterTest.php')
-rw-r--r--tests/Unit/RouterTest.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Unit/RouterTest.php b/tests/Unit/RouterTest.php
index d0f8912..dcbb599 100644
--- a/tests/Unit/RouterTest.php
+++ b/tests/Unit/RouterTest.php
@@ -330,3 +330,6 @@ it('builds routes in groups', function () {
expect($router->getNamedRoute('no-prefix.test3'))->toBe($r3);
expect($router->getNamedRoute('test4'))->toBe($r4);
});
+
+it('has middleware')->todo();
+it('can create a group with middleware')->todo();