19 lines
466 B
TypeScript
19 lines
466 B
TypeScript
|
import SparkSQL from '../../../../src/parser/spark';
|
||
|
import { readSQL } from '../../../helper';
|
||
|
|
||
|
const parser = new SparkSQL();
|
||
|
|
||
|
const features = {
|
||
|
loadData: readSQL(__dirname, 'loadData.sql'),
|
||
|
};
|
||
|
|
||
|
describe('SparkSQL Insert Syntax Tests', () => {
|
||
|
Object.keys(features).forEach((key) => {
|
||
|
features[key].forEach((sql) => {
|
||
|
it(sql, () => {
|
||
|
expect(parser.validate(sql).length).toBe(0);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|