Example #1
0
 /** @test */
 public function it_renders_script()
 {
     $html = new Html();
     $url = App::getBaseURL() . "/script.js";
     $this->expectOutputString("<script src='{$url}'></script>");
     $html->script('script.js');
 }