Cleaning up generated tests

This commit is contained in:
Matthew Dillon 2015-04-27 08:23:33 -08:00
parent f3a700462d
commit d890a62c6f
5 changed files with 18 additions and 26 deletions

View file

@ -1,23 +0,0 @@
import Ember from 'ember';
import { initialize } from '../../../initializers/custom-session';
import { module, test } from 'qunit';
var container, application;
module('CustomSessionInitializer', {
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);
});