98f6800f9d
git-svn-id: file:///home/shish/svn/shimmie2/trunk@1096 7f39781d-f577-437e-ae19-be835c7a54ca
14 lines
364 B
PHP
14 lines
364 B
PHP
<?php
|
|
class ViewTest extends WebTestCase {
|
|
function testViewPage() {
|
|
$this->get(TEST_BASE.'/post/view/1914');
|
|
$this->assertTitle('Image 1914: test');
|
|
|
|
$this->get(TEST_BASE.'/post/view/1');
|
|
$this->assertTitle('Image not found');
|
|
|
|
$this->get(TEST_BASE.'/post/view/-1');
|
|
$this->assertTitle('Image not found');
|
|
}
|
|
}
|
|
?>
|