changeset 245 | c9dd78a43b07 |
244:d7ab83ecf737 | 245:c9dd78a43b07 |
---|---|
1 import { moduleForModel, test } from 'ember-qunit'; |
|
2 |
|
3 moduleForModel('transcript', 'Unit | Serializer | transcript', { |
|
4 // Specify the other units that are required for this test. |
|
5 needs: ['serializer:transcript'] |
|
6 }); |
|
7 |
|
8 // Replace this with your real tests. |
|
9 test('it serializes records', function(assert) { |
|
10 let record = this.subject(); |
|
11 |
|
12 let serializedRecord = record.serialize(); |
|
13 |
|
14 assert.ok(serializedRecord); |
|
15 }); |