Exemplo n.º 1
0
 /**
  * testDescribe
  *
  * @return void
  */
 public function testDescribe()
 {
     ConnectionManager::create('test_csv', $this->config);
     $model = ClassRegistry::init('UserTest');
     $expected = array('id', 'name', 'age');
     $this->assertEquals($expected, $this->Csv->describe($model));
 }