Complete the notice display. add various fields to document to correctly display the notice. Correct bug #0025746
import { moduleForModel, test } from 'ember-qunit';
moduleForModel('language', 'Unit | Serializer | language', {
// Specify the other units that are required for this test.
needs: ['serializer:language']
});
// Replace this with your real tests.
test('it serializes records', function(assert) {
let record = this.subject();
let serializedRecord = record.serialize();
assert.ok(serializedRecord);
});