2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
2009-07-15 02:42:18 +01:00
|
|
|
class HomeTest extends ShimmieWebTestCase {
|
2008-10-11 07:09:42 +00:00
|
|
|
function testHomePage() {
|
2009-07-15 02:42:18 +01:00
|
|
|
$this->get_page('home');
|
|
|
|
$this->assertTitle('Shimmie');
|
|
|
|
$this->assertText('Shimmie');
|
2009-07-20 06:51:36 +01:00
|
|
|
|
|
|
|
# FIXME: test search box
|
2008-10-11 07:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|