2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
|
|
|
class CommentListTest extends WebTestCase {
|
|
|
|
function testCommentsPage() {
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/comment/list');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Comments');
|
|
|
|
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/comment/list/2');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Comments');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|