function CascadingStylesheetsTestCase::testReset

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

Makes sure that reseting the CSS empties the cache.

File

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

Class

CascadingStylesheetsTestCase
Test the Drupal CSS system.

Code

function testReset() {
  drupal_static_reset('drupal_add_css');
  $this->assertEqual(array(), drupal_add_css(), 'Resetting the CSS empties the cache.');
}