JavaScriptTestCase::testLibraryAlter

7 common.test JavaScriptTestCase::testLibraryAlter()

Adds a JavaScript library to the page and alters it.

See also

common_test_library_alter()

File

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

Code

function testLibraryAlter() {
  // Verify that common_test altered the title of Farbtastic.
  $library = drupal_get_library('system', 'farbtastic');
  $this->assertEqual($library['title'], 'Farbtastic: Altered Library', t('Registered libraries were altered.'));

  // common_test_library_alter() also added a dependency on jQuery Form.
  drupal_add_library('system', 'farbtastic');
  $scripts = drupal_get_js();
  $this->assertTrue(strpos($scripts, 'misc/jquery.form.js'), t('Altered library dependencies are added to the page.'));
}
Login or register to post comments