summaryrefslogtreecommitdiff
path: root/modules/color/color.test
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-06-08 15:34:26 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-06-08 15:34:26 -0700
commit0cf6aa0c0728f7a52e909693622f646ab56a6720 (patch)
treecec2921454f4a4715df81e5a4da44197ee95ede2 /modules/color/color.test
parentf4c0c2da6e153d3648871524a7883d0372098686 (diff)
downloadbrdo-0cf6aa0c0728f7a52e909693622f646ab56a6720.tar.gz
brdo-0cf6aa0c0728f7a52e909693622f646ab56a6720.tar.bz2
Rollback of previous commit. This fails testbot.
Diffstat (limited to 'modules/color/color.test')
-rw-r--r--modules/color/color.test37
1 files changed, 0 insertions, 37 deletions
diff --git a/modules/color/color.test b/modules/color/color.test
index 897bd6cc0..1ddfc0647 100644
--- a/modules/color/color.test
+++ b/modules/color/color.test
@@ -11,7 +11,6 @@
class ColorTestCase extends DrupalWebTestCase {
protected $big_user;
protected $themes;
- protected $colorTests;
public static function getInfo() {
return array(
@@ -41,19 +40,6 @@ class ColorTestCase extends DrupalWebTestCase {
),
);
theme_enable(array_keys($this->themes));
-
- // Array filled with valid and not valid color values
- $this->colorTests = array(
- '#000' => TRUE,
- '#123456' => TRUE,
- '#abcdef' => TRUE,
- '#0' => FALSE,
- '#00' => FALSE,
- '#0000' => FALSE,
- '#00000' => FALSE,
- '123456' => FALSE,
- '#00000g' => FALSE,
- );
}
/**
@@ -107,27 +93,4 @@ class ColorTestCase extends DrupalWebTestCase {
$this->assertTrue(strpos($stylesheet_content, 'public://') === FALSE, 'Make sure the color paths have been translated to local paths. (' . $theme . ')');
variable_set('preprocess_css', 0);
}
-
- /**
- * Test to see if the provided color is valid
- */
- function testValidColor() {
- variable_set('theme_default', 'bartik');
- $settings_path = 'admin/appearance/settings/bartik';
-
- $this->drupalLogin($this->big_user);
- $edit['scheme'] = '';
-
- foreach ($this->colorTests as $color => $is_valid) {
- $edit['palette[bg]'] = $color;
- $this->drupalPost($settings_path, $edit, t('Save configuration'));
-
- if($is_valid) {
- $this->assertText('The configuration options have been saved.');
- }
- else {
- $this->assertText('You must enter a valid hexadecimal color value for Main background.');
- }
- }
- }
}