function JavaScriptTestCase::testAddExternal in Drupal 7
Tests adding an external JavaScript File.
File
- modules/
simpletest/ tests/ common.test, line 1494 - 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.');
}