Ghost/ghost/admin/tests/unit/models/setting-test.js

12 lines
332 B
JavaScript
Raw Normal View History

2016-11-24 01:50:57 +03:00
import {describe, it} from 'mocha';
import {setupModelTest} from 'ember-mocha';
2015-02-18 23:02:48 +03:00
2016-11-24 01:50:57 +03:00
describe('Unit: Model: setting', function () {
setupModelTest('setting');
2015-02-18 23:02:48 +03:00
it('has a validation type of "setting"', function () {
let model = this.subject();
2015-02-18 23:02:48 +03:00
expect(model.get('validationType')).to.equal('setting');
});
});