c68df68195
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1070 7f39781d-f577-437e-ae19-be835c7a54ca
10 lines
279 B
PHP
10 lines
279 B
PHP
<?php
|
|
class Handle404Test extends WebTestCase {
|
|
function test404Handler() {
|
|
$this->get('http://shimmie.shishnet.org/v2/not/a/page');
|
|
$this->assertResponse(404);
|
|
$this->assertTitle('404');
|
|
$this->assertText("No handler could be found for the page 'not/a/page'");
|
|
}
|
|
}
|
|
?>
|