| 7 common.test | CascadingStylesheetsTestCase::testAddExternal() |
Tests adding an external stylesheet.
File
- modules/
simpletest/ tests/ common.test, line 642 - Tests for common.inc functionality.
Code
function testAddExternal() {
$path = 'http://example.com/style.css';
$css = drupal_add_css($path, 'external');
$this->assertEqual($css[$path]['type'], 'external', t('Adding an external CSS file caches it properly.'));
}
Login or register to post comments