store enabled exts in a config file, rather than moving directories around

This commit is contained in:
Shish
2012-03-31 18:59:28 +01:00
parent 15df989f72
commit 67f1c1c51d
274 changed files with 63 additions and 1885 deletions

11
ext/home/test.php Normal file
View File

@ -0,0 +1,11 @@
<?php
class HomeTest extends ShimmieWebTestCase {
function testHomePage() {
$this->get_page('home');
$this->assert_title('Shimmie');
$this->assert_text('Shimmie');
# FIXME: test search box
}
}
?>