Example #1
0
 public function testStylesheets()
 {
     $this->_page->addStylesheet(['foo2', 'bar2']);
     $this->_page->option('css_path', 'custom/css/path');
     $this->_page->option('js_async', true);
     $this->assertEquals("<link type=\"text/css\" rel=\"stylesheet\" href=\"custom/css/path/foo2.css\">\n<link type=\"text/css\" rel=\"stylesheet\" href=\"custom/css/path/bar2.css\">", $this->_page->renderStylesheets());
 }