0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/tests/unit/models/setting-test.js

13 lines
294 B
JavaScript
Raw Normal View History

2015-02-01 20:45:59 +00:00
import {
describeModel,
it
} from 'ember-mocha';
describeModel('setting', 'Unit: Model: setting', function () {
2015-02-01 20:45:59 +00:00
it('has a validation type of "setting"', function () {
var model = this.subject();
expect(model.get('validationType')).to.equal('setting');
});
});