예제 #1
0
 function testFilePack()
 {
     $var = "blah blah";
     $args = array("var" => $var);
     $check = "test html here {$var}";
     $view = new TestView($this->view_name, $this->view_type, $this->view_dir, $args);
     $output = $view->pack_view();
     $this->assertIdentical($check, $output);
 }