12 lines
306 B
PHP
12 lines
306 B
PHP
|
<?php
|
||
|
class CommentListTest extends WebTestCase {
|
||
|
function testCommentsPage() {
|
||
|
$this->get('http://shimmie.shishnet.org/v2/comment/list');
|
||
|
$this->assertTitle('Comments');
|
||
|
|
||
|
$this->get('http://shimmie.shishnet.org/v2/comment/list/2');
|
||
|
$this->assertTitle('Comments');
|
||
|
}
|
||
|
}
|
||
|
?>
|