lava-oushudb-dt-sql-parser/test/parser/pgsql/syntax/dropStatement.test.ts

17 lines
377 B
TypeScript
Raw Normal View History

import PostgresSQL from 'src/parser/pgsql';
import { readSQL } from 'test/helper';
const parser = new PostgresSQL();
const features = {
drops: readSQL(__dirname, 'drop.sql'),
};
describe('PgSQL Delete Syntax Tests', () => {
features.drops.forEach((drop) => {
it(drop, () => {
expect(parser.validate(drop).length).toBe(0);
});
});
});