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

14 lines
387 B
JavaScript
Raw Normal View History

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