function JavaScriptTestCase::testAddExternal
Tests adding an external JavaScript File.
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ common.test, line 1239 - Tests for common.inc functionality.
Class
- JavaScriptTestCase
- Tests for the JavaScript system.
Código
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.');
}