17 lines
392 B
TypeScript
17 lines
392 B
TypeScript
|
import SparkSQL from '../../../../src/parser/spark';
|
||
|
import { readSQL } from '../../../helper';
|
||
|
|
||
|
const parser = new SparkSQL();
|
||
|
|
||
|
const features = {
|
||
|
show: readSQL(__dirname, 'show.sql'),
|
||
|
};
|
||
|
|
||
|
describe('Spark show Syntax Tests', () => {
|
||
|
features.show.forEach((itemSql) => {
|
||
|
it(itemSql, () => {
|
||
|
expect(parser.validate(itemSql).length).toBe(0);
|
||
|
});
|
||
|
});
|
||
|
});
|