This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/comment/test.php

11 lines
261 B
PHP

<?php
class CommentListTest extends ShimmieWebTestCase {
function testCommentsPage() {
$this->get_page('comment/list');
$this->assertTitle('Comments');
$this->get_page('comment/list/2');
$this->assertTitle('Comments');
}
}
?>