2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
|
|
|
class Handle404Test extends WebTestCase {
|
|
|
|
function test404Handler() {
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/not/a/page');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertResponse(404);
|
|
|
|
$this->assertTitle('404');
|
|
|
|
$this->assertText("No handler could be found for the page 'not/a/page'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|