From e5dc115607203ffe123a56d8efe26c3b21ea3479 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 12 Nov 2015 13:49:55 -0700 Subject: [PATCH] Drop store initializer Fixes #39 --- app/initializers/component-store.js | 8 ------- .../unit/initializers/component-store-test.js | 23 ------------------- 2 files changed, 31 deletions(-) delete mode 100644 app/initializers/component-store.js delete mode 100644 tests/unit/initializers/component-store-test.js diff --git a/app/initializers/component-store.js b/app/initializers/component-store.js deleted file mode 100644 index 54a3064..0000000 --- a/app/initializers/component-store.js +++ /dev/null @@ -1,8 +0,0 @@ -export function initialize(container, application) { - application.inject('component', 'store', 'service:store'); -} - -export default { - name: 'component-store', - initialize: initialize -}; diff --git a/tests/unit/initializers/component-store-test.js b/tests/unit/initializers/component-store-test.js deleted file mode 100644 index b0429e5..0000000 --- a/tests/unit/initializers/component-store-test.js +++ /dev/null @@ -1,23 +0,0 @@ -import Ember from 'ember'; -import { initialize } from '../../../initializers/component-store'; -import { module, test } from 'qunit'; - -var container, application; - -module('Unit | Initializer | component store', { - beforeEach: function() { - Ember.run(function() { - application = Ember.Application.create(); - container = application.__container__; - application.deferReadiness(); - }); - } -}); - -// Replace this with your real tests. -test('it works', function(assert) { - initialize(container, application); - - // you would normally confirm the results of the initializer here - assert.ok(true); -});