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

testReleaseSavepoint() public method

Tests Postgresql::releaseSavepoint
Since: 2016-09-30
Author: Serghei Iakovlev ([email protected])
    public function testReleaseSavepoint()
    {
        $this->specify('The SQL generated to release a savepoint is incorrect', function () {
            $dialect = new Postgresql();
            expect($dialect->releaseSavepoint('PH_SAVEPOINT_1'))->equals('RELEASE SAVEPOINT PH_SAVEPOINT_1');
        });
    }