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 = {
|
|
|
|
deletes: readSQL(__dirname, 'delete.sql'),
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PgSQL Delete Syntax Tests', () => {
|
|
|
|
features.deletes.forEach((deleteItem) => {
|
|
|
|
it(deleteItem, () => {
|
|
|
|
expect(parser.validate(deleteItem).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|