mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 01:03:23 +03:00
26 lines
703 B
JavaScript
26 lines
703 B
JavaScript
import run from 'ember-runloop';
|
|
import {describe, it} from 'mocha';
|
|
import {setupModelTest} from 'ember-mocha';
|
|
|
|
describe('Unit: Model: role', function () {
|
|
setupModelTest('role', {
|
|
needs: ['service:ajax']
|
|
});
|
|
|
|
it('provides a lowercase version of the name', function () {
|
|
let model = this.subject({
|
|
name: 'Author'
|
|
});
|
|
|
|
expect(model.get('name')).to.equal('Author');
|
|
expect(model.get('lowerCaseName')).to.equal('author');
|
|
|
|
run(function () {
|
|
model.set('name', 'Editor');
|
|
|
|
expect(model.get('name')).to.equal('Editor');
|
|
expect(model.get('lowerCaseName')).to.equal('editor');
|
|
});
|
|
});
|
|
});
|