array transform is replaced by model fragments

This commit is contained in:
jelhan 2015-10-13 21:46:49 +02:00
parent 243ed3b12a
commit cb2634e10a
2 changed files with 0 additions and 23 deletions

View file

@ -1,11 +0,0 @@
import DS from 'ember-data';
export default DS.Transform.extend({
deserialize: function(serialized) {
return serialized;
},
serialize: function(deserialized) {
return deserialized;
}
});

View file

@ -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);
});