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/ext/site_description/test.php

24 lines
604 B
PHP
Raw Normal View History

<?php
2015-09-20 19:44:34 +00:00
class SiteDescriptionTest extends ShimmiePHPUnitTestCase {
2015-09-26 10:17:13 +00:00
public function testSiteDescription() {
2015-09-20 19:44:34 +00:00
global $config, $page;
$config->set_string("site_description", "A Shimmie testbed");
$this->get_page("post/list");
$this->assertContains(
'<meta name="description" content="A Shimmie testbed">',
$page->html_headers
);
}
2015-09-26 10:17:13 +00:00
public function testSiteKeywords() {
2015-09-20 19:44:34 +00:00
global $config, $page;
$config->set_string("site_keywords", "foo,bar,baz");
$this->get_page("post/list");
$this->assertContains(
'<meta name="keywords" content="foo,bar,baz">',
$page->html_headers
);
}
}