Пример #1
0
 /**
  * test adding new engines.
  *
  * @return void
  */
 public function testEngineSetup()
 {
     $engine = new PhpConfig();
     Configure::config('test', $engine);
     $configured = Configure::configured();
     $this->assertTrue(in_array('test', $configured));
     $this->assertTrue(Configure::configured('test'));
     $this->assertFalse(Configure::configured('fake_garbage'));
     $this->assertTrue(Configure::drop('test'));
     $this->assertFalse(Configure::drop('test'), 'dropping things that do not exist should return false.');
 }