(property, dataType)
| 8 | const DataTypes = require('sequelize/lib/data-types'); |
| 9 | |
| 10 | function assertDataType(property, dataType) { |
| 11 | expect(property.type.constructor.key).to.equal(dataType.key); |
| 12 | } |
| 13 | |
| 14 | describe(Support.getTestDialectTeaser('Model'), () => { |
| 15 | describe('getAttributes', () => { |