where were going, we dont need tests

This commit is contained in:
Your Name 2022-08-14 10:41:29 -05:00
parent 048dd59010
commit c83e13bd51

View File

@ -1,15 +0,0 @@
<?php
declare(strict_types=1);
class FourOhFourTest extends ShimmiePHPUnitTestCase
{
public function test404Handler()
{
$this->get_page('not/a/page');
// most descriptive error first
$this->assert_text("No handler could be found for the page 'not/a/page'");
$this->assert_title('404');
$this->assert_response(404);
}
}