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

17 lines
395 B
TypeScript
Raw Normal View History

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