Skip to content

Commit

Permalink
Fixing issue in HtmlHelper test where test files would be left behind.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Sep 25, 2010
1 parent c9a6eba commit d0028bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cake/tests/cases/libs/view/helpers/html.test.php
Expand Up @@ -643,6 +643,9 @@ function testScriptInTheme() {
'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();
}

Expand Down

0 comments on commit d0028bf

Please sign in to comment.