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

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

Tests Postgresql::dropIndex
С версии: 2016-09-30
Автор: Serghei Iakovlev ([email protected])
public testDropIndex ( )
    public function testDropIndex()
    {
        $this->specify('The SQL generated to delete an index from a table is incorrect', function ($schema, $index, $expected) {
            $dialect = new Postgresql();
            expect($dialect->dropIndex('table', $schema, $index))->equals($expected);
        }, ['examples' => $this->getDropIndex()]);
    }