Extends
lithium\test\UnitSource
public function testGroup() {
$result = $this->db->group(array('id ASC'));
$expected = 'GROUP BY id ASC';
$this->assertEqual($expected, $result);
}
public function testGroup() {
$result = $this->db->group(array('id ASC'));
$expected = 'GROUP BY id ASC';
$this->assertEqual($expected, $result);
}