Phalcon\Test\Unit\Db\Dialect\PostgresqlTest::testColumnList PHP Method

testColumnList() public method

Tests Postgresql::getColumnList
Since: 2016-09-30
Author: Serghei Iakovlev ([email protected])
public testColumnList ( )
    public function testColumnList()
    {
        $this->specify('The getColumnList method does not return correct list of columns with escaped identifiers', function ($columns, $expected) {
            $dialect = new Postgresql();
            expect($dialect->getColumnList($columns))->equals($expected);
        }, ['examples' => $this->getColumnList()]);
    }