- Patch #510460 by tic2000: improved CSS test.

merge-requests/26/head
Dries Buytaert 2009-07-14 10:43:21 +00:00
parent 3269eb2e08
commit 5cbf5d3bc1
1 changed files with 3 additions and 3 deletions

View File

@ -265,8 +265,8 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase {
* Tests rendering inline stylesheets through a full page request.
*/
function testRenderInlineFullPage() {
$css = 'body { padding: 0px; }';
$compressed_css = '<style type="text/css">' . drupal_load_stylesheet_content($css, TRUE) . '</style>';
$css = 'body { font-size: 254px; }';
$expected = 'font-size:254px;';
// Create a node, using the PHP filter that tests drupal_add_css().
$settings = array(
@ -278,7 +278,7 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase {
// Fetch the page.
$this->drupalGet('node/' . $node->nid);
$this->assertRaw($compressed_css, t('Inline stylesheets appear in the full page rendering.'));
$this->assertRaw($expected, t('Inline stylesheets appear in the full page rendering.'));
}
}