2023-12-19 19:22:27 +08:00
|
|
|
import { PostgresSQL } from '../../../filters';
|
2023-11-09 11:53:40 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
2023-12-19 19:22:27 +08:00
|
|
|
const parser = new PostgresSQL();
|
2023-11-09 11:53:40 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|