Example #1
0
 public function testFields()
 {
     $this->initConnection();
     $result = Authors::fields();
     $result = $this->inline($result);
     $expected = "array(0=>'author_id',1=>'first_name',2=>'last_name',3=>'birth_date',)";
     $this->assertEquals($expected, $result);
 }