| 7 form.test | FormsElementsVerticalTabsFunctionalTest::testJavaScriptOrdering() |
| 8 form.test | FormsElementsVerticalTabsFunctionalTest::testJavaScriptOrdering() |
Ensures that vertical-tabs.js is included before collapse.js.
Otherwise, collapse.js adds "SHOW" or "HIDE" labels to the tabs.
File
- modules/
simpletest/ tests/ form.test, line 938 - Unit tests for the Drupal Form API.
Code
function testJavaScriptOrdering() {
$this->drupalGet('form_test/vertical-tabs');
$position1 = strpos($this->content, 'misc/vertical-tabs.js');
$position2 = strpos($this->content, 'misc/collapse.js');
$this->assertTrue($position1 !== FALSE && $position2 !== FALSE && $position1 < $position2, t('vertical-tabs.js is included before collapse.js'));
}
Login or register to post comments