2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
2009-07-15 02:42:18 +01:00
|
|
|
class CommentListTest extends ShimmieWebTestCase {
|
2008-10-11 07:09:42 +00:00
|
|
|
function testCommentsPage() {
|
2009-07-15 02:42:18 +01:00
|
|
|
$this->get_page('comment/list');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Comments');
|
|
|
|
|
2009-07-15 02:42:18 +01:00
|
|
|
$this->get_page('comment/list/2');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Comments');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|