Fixing issue in HtmlHelper test where test files would be left behind.

This commit is contained in:
mark_story 2010-09-19 00:43:56 -04:00
parent c9a6eba000
commit d0028bf971

View file

@ -643,6 +643,9 @@ class HtmlHelperTest extends CakeTestCase {
'script' => array('src' => '/theme/test_theme/js/__test_js.js', 'type' => 'text/javascript')
);
$this->assertTags($result, $expected);
$folder = new Folder(WWW_ROOT . 'theme' . DS . 'test_theme');
$folder->delete();
App::build();
}