Exemple #1
0
 public function testConditionalScriptWidthIndentation()
 {
     $this->helper->direct()->appendFile('/js/foo.js', 'text/javascript', array('conditional' => 'lt IE 7'));
     $this->helper->direct()->setIndent(4);
     $test = $this->helper->direct()->toString();
     $this->assertContains('    <!--[if lt IE 7]>', $test);
 }