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

12 lines
306 B
PHP
Raw Normal View History

<?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');
}
}
?>