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