(description, dataType, expectation)
| 17 | |
| 18 | describe('DataTypes', () => { |
| 19 | const testsql = function(description, dataType, expectation) { |
| 20 | it(description, () => { |
| 21 | return expectsql(current.normalizeDataType(dataType).toSql(), expectation); |
| 22 | }); |
| 23 | }; |
| 24 | |
| 25 | describe('STRING', () => { |
| 26 | testsql('STRING', DataTypes.STRING, { |
no test coverage detected