24 lines
623 B
JavaScript
24 lines
623 B
JavaScript
import run from 'ember-runloop';
|
|
import {
|
|
describeModel,
|
|
it
|
|
} from 'ember-mocha';
|
|
|
|
describeModel('role', 'Unit: Model: role', function () {
|
|
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');
|
|
});
|
|
});
|
|
});
|