function CascadingStylesheetsTestCase::testRenderInlineNoPreprocess

7.x common.test CascadingStylesheetsTestCase::testRenderInlineNoPreprocess()

Tests rendering inline stylesheets with preprocessing off.

File

drupal-7.x/modules/simpletest/tests/common.test, line 717
Tests for common.inc functionality.

Class

CascadingStylesheetsTestCase
Test the Drupal CSS system.

Code

function testRenderInlineNoPreprocess() {
  $css = 'body { padding: 0px; }';
  drupal_add_css($css, array('type' => 'inline', 'preprocess' => FALSE));
  $styles = drupal_get_css();
  $this->assertTrue(strpos($styles, $css) > 0, 'Rendering non-preprocessed inline CSS adds it to the page.');
}