2016-11-24 01:50:57 +03:00
|
|
|
import {describe, it} from 'mocha';
|
2019-01-02 12:58:55 +03:00
|
|
|
import {expect} from 'chai';
|
2019-05-13 15:43:53 +03:00
|
|
|
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 () {
|
2019-05-13 15:43:53 +03:00
|
|
|
setupTest();
|
|
|
|
|
2015-02-18 23:02:48 +03:00
|
|
|
it('has a validation type of "setting"', function () {
|
2019-05-13 15:43:53 +03:00
|
|
|
let model = this.owner.lookup('service:store').createRecord('setting');
|
2015-02-18 23:02:48 +03:00
|
|
|
|
|
|
|
expect(model.get('validationType')).to.equal('setting');
|
|
|
|
});
|
|
|
|
});
|