function JavaScriptTestCase::testLibraryRender

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

File

drupal/modules/simpletest/tests/common.test, line 1798
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, 'Library was added without errors.');
  $scripts = drupal_get_js();
  $styles = drupal_get_css();
  $this
    ->assertTrue(strpos($scripts, 'misc/farbtastic/farbtastic.js'), 'JavaScript of library was added to the page.');
  $this
    ->assertTrue(strpos($styles, 'misc/farbtastic/farbtastic.css'), 'Stylesheet of library was added to the page.');
}