2008-10-11 07:09:42 +00:00
|
|
|
<?php
|
|
|
|
class HomeTest extends WebTestCase {
|
|
|
|
function testHomePage() {
|
2008-10-18 10:34:15 +00:00
|
|
|
$this->get(TEST_BASE.'/home');
|
2008-10-11 07:09:42 +00:00
|
|
|
$this->assertTitle('Shimmie Testbed');
|
|
|
|
$this->assertText('Shimmie Testbed');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|