Example #1
0
 public function testMetaAndOptions()
 {
     $this->_page->options->set('title_pattern', '%s | bar');
     $this->_page->meta->set('title', 'foo');
     $this->assertEquals("<title>foo | bar</title>\n<meta name=\"twitter:title\" content=\"foo\">\n<meta property=\"og:title\" content=\"foo\">", $this->_page->renderMeta());
 }