set_string("site_description", "A Shimmie testbed");
$this->get_page("post/list");
$this->assertStringContainsString(
"",
(string)$page->get_all_html_headers()
);
}
public function testSiteKeywords(): void
{
global $config, $page;
$config->set_string("site_keywords", "foo,bar,baz");
$this->get_page("post/list");
$this->assertStringContainsString(
"",
(string)$page->get_all_html_headers()
);
}
}