changeset 467 | 762fc0eb4946 |
466:a8effb60ccb6 | 467:762fc0eb4946 |
---|---|
1 import { moduleForModel, test } from 'ember-qunit'; |
|
2 |
|
3 moduleForModel('language', 'Unit | Serializer | language', { |
|
4 // Specify the other units that are required for this test. |
|
5 needs: ['serializer:language'] |
|
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 }); |