function JavaScriptTestCase::testAddExternal

Tests adding an external JavaScript File.

File

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

Class

JavaScriptTestCase
Tests for the JavaScript system.

Code

function testAddExternal() {
  $path = 'http://example.com/script.js';
  $javascript = drupal_add_js($path, 'external');
  $this
    ->assertTrue(array_key_exists('http://example.com/script.js', $javascript), 'Added an external JavaScript file.');
}