array transform is replaced by model fragments
This commit is contained in:
parent
243ed3b12a
commit
cb2634e10a
2 changed files with 0 additions and 23 deletions
|
@ -1,11 +0,0 @@
|
||||||
import DS from 'ember-data';
|
|
||||||
|
|
||||||
export default DS.Transform.extend({
|
|
||||||
deserialize: function(serialized) {
|
|
||||||
return serialized;
|
|
||||||
},
|
|
||||||
|
|
||||||
serialize: function(deserialized) {
|
|
||||||
return deserialized;
|
|
||||||
}
|
|
||||||
});
|
|
|
@ -1,12 +0,0 @@
|
||||||
import { moduleFor, test } from 'ember-qunit';
|
|
||||||
|
|
||||||
moduleFor('transform:array', 'Unit | Service | array', {
|
|
||||||
// Specify the other units that are required for this test.
|
|
||||||
// needs: ['serializer:foo']
|
|
||||||
});
|
|
||||||
|
|
||||||
// Replace this with your real tests.
|
|
||||||
test('it exists', function(assert) {
|
|
||||||
var transform = this.subject();
|
|
||||||
assert.ok(transform);
|
|
||||||
});
|
|
Loading…
Reference in a new issue