Improving code coverage in Configure.

This commit is contained in:
mark_story 2011-05-21 15:49:28 -04:00
parent ed68368201
commit 438734c202

View file

@ -132,6 +132,9 @@ class ConfigureTest extends CakeTestCase {
$result = Configure::read('Key.One.Two.Three.Four.Five');
$this->assertEqual('cool', $result);
Configure::write('one.two.three.four', '4');
$result = Configure::read('one.two.three.four');
}
/**