cms/app-client/tests/unit/serializers/transcript-test.js
author ymh <ymh.work@gmail.com>
Wed, 28 Sep 2016 15:58:18 +0200
changeset 305 ff6cf3fc5f40
parent 245 c9dd78a43b07
permissions -rw-r--r--
api reorganisation and propagation if the changes + some code cleaning

import { moduleForModel, test } from 'ember-qunit';

moduleForModel('transcript', 'Unit | Serializer | transcript', {
  // Specify the other units that are required for this test.
  needs: ['serializer:transcript']
});

// Replace this with your real tests.
test('it serializes records', function(assert) {
  let record = this.subject();

  let serializedRecord = record.serialize();

  assert.ok(serializedRecord);
});