Ghost/ghost/admin/tests/unit/serializers/role-test.js

24 lines
553 B
JavaScript
Raw Normal View History

/* jshint expr:true */
import {expect} from 'chai';
import {describeModel, it} from 'ember-mocha';
describeModel(
'role',
'Unit:Serializer: role',
{
// Specify the other units that are required for this test.
needs: ['transform:moment-utc']
},
function() {
// Replace this with your real tests.
it('serializes records', function() {
let record = this.subject();
let serializedRecord = record.serialize();
expect(serializedRecord).to.be.ok;
});
}
);