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/contrib/site_description/test.php
2009-08-19 01:28:48 +01:00

16 lines
445 B
PHP

<?php
class SiteDescriptionTest extends SCoreWebTestCase {
function testSiteDescription() {
$this->log_in_as_admin();
$this->get_page('setup');
$this->assert_title("Shimmie Setup");
$this->set_field("_config_site_description", "A Shimmie testbed");
$raw = $this->click("Save Settings");
$header = '<meta name="description" content="A Shimmie testbed">';
$this->assertTrue(strpos($raw, $header) > 0);
$this->log_out();
}
}
?>