From 5c36d996e068f4baedabb57ad421bc9ab3b91658 Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 10 Mar 2012 02:19:04 +0000 Subject: [PATCH] test 404 handler's static files too --- ext/handle_404/test.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/handle_404/test.php b/ext/handle_404/test.php index 2cbae7b2..452af8da 100644 --- a/ext/handle_404/test.php +++ b/ext/handle_404/test.php @@ -5,6 +5,9 @@ class Handle404Test extends SCoreWebTestCase { $this->assert_response(404); $this->assert_title('404'); $this->assert_text("No handler could be found for the page 'not/a/page'"); + + $this->get_page('favicon.ico'); + $this->assert_response(200); } } ?>