Phalcon\Test\Unit\Db\Dialect\PostgresqlTest::testDescribeReferences PHP Метод

testDescribeReferences() публичный Метод

Tests Postgresql::describeReferences
С версии: 2016-10-02
Автор: Wojciech Ślawski ([email protected])
    public function testDescribeReferences()
    {
        $this->specify('The SQL generated to describe references is incorrect', function ($schema, $expected) {
            $dialect = new Postgresql();
            expect($dialect->describeReferences('table', $schema))->equals($expected);
        }, ['examples' => $this->getDescribeReferences()]);
    }