2023-12-19 19:22:27 +08:00
|
|
|
import { SparkSQL } from '../../../filters';
|
2023-10-09 09:49:22 +08:00
|
|
|
import { readSQL } from '../../../helper';
|
|
|
|
|
|
|
|
const parser = new SparkSQL();
|
|
|
|
|
|
|
|
const features = {
|
|
|
|
describe: readSQL(__dirname, 'describe.sql'),
|
|
|
|
};
|
|
|
|
|
2023-10-18 10:53:43 +08:00
|
|
|
describe('Spark Describe Syntax Tests', () => {
|
2023-10-09 09:49:22 +08:00
|
|
|
features.describe.forEach((itemSql) => {
|
|
|
|
it(itemSql, () => {
|
|
|
|
expect(parser.validate(itemSql).length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|