diff --git a/app/transforms/array.js b/app/transforms/array.js deleted file mode 100644 index 3fb7bbf..0000000 --- a/app/transforms/array.js +++ /dev/null @@ -1,11 +0,0 @@ -import DS from 'ember-data'; - -export default DS.Transform.extend({ - deserialize: function(serialized) { - return serialized; - }, - - serialize: function(deserialized) { - return deserialized; - } -}); diff --git a/tests/unit/transforms/array-test.js b/tests/unit/transforms/array-test.js deleted file mode 100644 index a343381..0000000 --- a/tests/unit/transforms/array-test.js +++ /dev/null @@ -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); -});