mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
import {describe, it} from 'mocha';
|
|
import {setupModelTest} from 'ember-mocha';
|
|
|
|
describe('Unit: Model: setting', function () {
|
|
setupModelTest('setting');
|
|
it('has a validation type of "setting"', function () {
|
|
let model = this.subject();
|
|
|
|
expect(model.get('validationType')).to.equal('setting');
|
|
});
|
|
});
|