Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
69 | public function testDefaultValuesAreWrittenWhenEnabled() |
||
70 | { |
||
71 | SiteConfig::config()->set('enable_theme_color_picker', true); |
||
72 | |||
73 | $siteConfig = SiteConfig::create(); |
||
74 | $siteConfig->write(); |
||
75 | |||
76 | $this->assertNotEmpty($siteConfig->HeaderBackground, 'Color fields should be written when enabled'); |
||
77 | } |
||
79 |