Cleaning up generated tests
This commit is contained in:
parent
f3a700462d
commit
d890a62c6f
5 changed files with 18 additions and 26 deletions
15
tests/unit/controllers/strains/show-test.js
Normal file
15
tests/unit/controllers/strains/show-test.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import {
|
||||
moduleFor,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleFor('controller:strains/show', {
|
||||
// Specify the other units that are required for this test.
|
||||
// needs: ['controller:foo']
|
||||
});
|
||||
|
||||
// Replace this with your real tests.
|
||||
test('it exists', function(assert) {
|
||||
var controller = this.subject();
|
||||
assert.ok(controller);
|
||||
});
|
|
@ -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);
|
||||
});
|
|
@ -5,7 +5,7 @@ import {
|
|||
|
||||
moduleForModel('characteristic', {
|
||||
// Specify the other units that are required for this test.
|
||||
needs: []
|
||||
needs: ['model:measurement', 'model:strain']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
|
|
|
@ -5,7 +5,7 @@ import {
|
|||
|
||||
moduleForModel('measurement', {
|
||||
// Specify the other units that are required for this test.
|
||||
needs: []
|
||||
needs: ['model:strain']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
|
|
|
@ -5,7 +5,7 @@ import {
|
|||
|
||||
moduleForModel('strain', {
|
||||
// Specify the other units that are required for this test.
|
||||
needs: []
|
||||
needs: ['model:measurement']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
|
|
Reference in a new issue