JavaScriptTestCase::testReset

7 common.test JavaScriptTestCase::testReset()

Test to see if resetting the JavaScript empties the cache.

File

modules/simpletest/tests/common.test, line 1283
Tests for common.inc functionality.

Code

function testReset() {
  drupal_add_js('misc/collapse.js');
  drupal_static_reset('drupal_add_js');
  $this->assertEqual(array(), drupal_add_js(), t('Resetting the JavaScript correctly empties the cache.'));
}
Login or register to post comments