dwoo = new Dwoo_Smarty_Adapter(); $this->dwoo->template_dir = TEST_DIRECTORY.'/resources/'; $this->dwoo->compile_dir = TEST_DIRECTORY.'/temp/compiled/'; $this->dwoo->cache_dir = TEST_DIRECTORY.'/temp/cache/'; $this->dwoo->config_dir = TEST_DIRECTORY.'/resources/configs/'; $this->compiler = new Dwoo_Compiler(); $this->compiler->addPreProcessor('smarty_compat', true); } public function testSmartyCompat() { $this->dwoo->assign('arr', array('ab','cd','ef')); $this->assertEquals('{'.Dwoo::VERSION.'} ab cd ef', $this->dwoo->fetch('smartytest.html')); } }