2015-02-18 23:02:48 +03:00
|
|
|
import {
|
|
|
|
describeModel,
|
|
|
|
it
|
|
|
|
} from 'ember-mocha';
|
|
|
|
|
2015-10-06 19:31:03 +03:00
|
|
|
describeModel('setting', 'Unit: Model: setting', function () {
|
2015-02-18 23:02:48 +03:00
|
|
|
it('has a validation type of "setting"', function () {
|
2015-10-28 14:36:45 +03:00
|
|
|
let model = this.subject();
|
2015-02-18 23:02:48 +03:00
|
|
|
|
|
|
|
expect(model.get('validationType')).to.equal('setting');
|
|
|
|
});
|
|
|
|
});
|