2024-03-27 10:33:25 +08:00
|
|
|
import { PostgreSQL } from 'src/parser/postgresql';
|
2024-01-19 21:10:00 +08:00
|
|
|
import { readSQL } from 'test/helper';
|
2023-11-09 11:53:40 +08:00
|
|
|
|
2024-03-27 10:33:25 +08:00
|
|
|
const postgresql = new PostgreSQL();
|
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, () => {
|
2024-03-27 10:33:25 +08:00
|
|
|
expect(postgresql.validate(deleteItem).length).toBe(0);
|
2023-11-09 11:53:40 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|