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

17 lines
397 B
TypeScript
Raw Normal View History

import { PostgresSQL } from '../../../filters';
import { readSQL } from '../../../helper';
const parser = new PostgresSQL();
const features = {
creates: readSQL(__dirname, 'create.sql'),
};
describe('PgSQL Create Syntax Tests', () => {
features.creates.forEach((create) => {
it(create, () => {
expect(parser.validate(create).length).toBe(0);
});
});
});