test files for various extensions

git-svn-id: file:///home/shish/svn/shimmie2/trunk@1070 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish
2008-10-11 07:09:42 +00:00
parent a0cb32f4b2
commit c68df68195
10 changed files with 216 additions and 0 deletions

9
contrib/home/test.php Normal file
View File

@ -0,0 +1,9 @@
<?php
class HomeTest extends WebTestCase {
function testHomePage() {
$this->get('http://shimmie.shishnet.org/v2/home');
$this->assertTitle('Shimmie Testbed');
$this->assertText('Shimmie Testbed');
}
}
?>