2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
|
|
|
class ViewTest extends WebTestCase {
|
|
|
|
function testViewPage() {
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/post/view/1914');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Image 1914: test');
|
|
|
|
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/post/view/1');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Image not found');
|
|
|
|
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/post/view/-1');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Image not found');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|