mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-archive.git
synced 2025-02-03 18:30:22 +00:00
16 lines
408 B
JavaScript
16 lines
408 B
JavaScript
|
import { moduleForModel, test } from 'ember-qunit';
|
||
|
|
||
|
moduleForModel('useful', 'Unit | Serializer | useful', {
|
||
|
// Specify the other units that are required for this test.
|
||
|
needs: ['serializer:useful']
|
||
|
});
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it serializes records', function(assert) {
|
||
|
let record = this.subject();
|
||
|
|
||
|
let serializedRecord = record.serialize();
|
||
|
|
||
|
assert.ok(serializedRecord);
|
||
|
});
|