You are here

function JavaScriptTestCase::testLibraryRender in SimpleTest 7

Adds a library to the page and tests for both its JavaScript and its CSS.

File

tests/common.test, line 1148
Tests for common.inc functionality.

Class

JavaScriptTestCase
Tests for the JavaScript system.

Code

function testLibraryRender() {
  $result = drupal_add_library('system', 'farbtastic');
  $this
    ->assertTrue($result !== FALSE, t('Library was added without errors.'));
  $scripts = drupal_get_js();
  $styles = drupal_get_css();
  $this
    ->assertTrue(strpos($scripts, 'misc/farbtastic/farbtastic.js'), t('JavaScript of library was added to the page.'));
  $this
    ->assertTrue(strpos($styles, 'misc/farbtastic/farbtastic.css'), t('Stylesheet of library was added to the page.'));
}