17 lines
414 B
TypeScript
17 lines
414 B
TypeScript
|
import FlinkSQL from '../../../../src/parser/flinksql';
|
||
|
import { readSQL } from '../../../helper';
|
||
|
|
||
|
const features = {
|
||
|
expression: readSQL(__dirname, 'expression.sql'),
|
||
|
};
|
||
|
|
||
|
describe('FlinkSQL Expression Syntax Tests', () => {
|
||
|
const parser = new FlinkSQL();
|
||
|
|
||
|
features.expression.forEach((sql) => {
|
||
|
it(sql, () => {
|
||
|
expect(parser.validate(sql).length).toBe(0);
|
||
|
});
|
||
|
});
|
||
|
});
|