Files
einundzwanzig-verein/tests/Feature/WelcomeRouteRemovedTest.php
T
HolgerHatGarKeineNode 532199fe15 🗑️ Remove deprecated /welcome route and add test to ensure 404 on access
🔧 Add `.codegraph/config.json` for file and directory tracking configuration
2026-05-20 00:47:02 +02:00

6 lines
119 B
PHP

<?php
it('returns 404 for the removed welcome route', function () {
$this->get('/welcome')->assertNotFound();
});