test 404 handler's static files too

This commit is contained in:
Shish 2012-03-10 02:19:04 +00:00
parent b451f90b47
commit 5c36d996e0

View File

@ -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);
}
}
?>