lava-oushudb-dt-sql-parser/test/parser/spark/syntax/listStatement.test.ts

17 lines
378 B
TypeScript
Raw Normal View History

import { SparkSQL } from 'src/parser/spark';
import { readSQL } from 'test/helper';
const spark = new SparkSQL();
const features = {
list: readSQL(__dirname, 'list.sql'),
};
describe('Spark List Syntax Tests', () => {
features.list.forEach((itemSql) => {
it(itemSql, () => {
expect(spark.validate(itemSql).length).toBe(0);
});
});
});