Roughing in measurements
This commit is contained in:
parent
ced3f7d2d2
commit
4f96f4dc07
13 changed files with 109 additions and 2 deletions
15
tests/unit/models/measurement-test.js
Normal file
15
tests/unit/models/measurement-test.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import {
|
||||
moduleForModel,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleForModel('measurement', {
|
||||
// Specify the other units that are required for this test.
|
||||
needs: []
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
var model = this.subject();
|
||||
// var store = this.store();
|
||||
assert.ok(!!model);
|
||||
});
|
14
tests/unit/routes/measurements-test.js
Normal file
14
tests/unit/routes/measurements-test.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import {
|
||||
moduleFor,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleFor('route:measurements', {
|
||||
// Specify the other units that are required for this test.
|
||||
// needs: ['controller:foo']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
var route = this.subject();
|
||||
assert.ok(route);
|
||||
});
|
14
tests/unit/routes/measurements/index-test.js
Normal file
14
tests/unit/routes/measurements/index-test.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import {
|
||||
moduleFor,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleFor('route:measurements/index', {
|
||||
// Specify the other units that are required for this test.
|
||||
// needs: ['controller:foo']
|
||||
});
|
||||
|
||||
test('it exists', function(assert) {
|
||||
var route = this.subject();
|
||||
assert.ok(route);
|
||||
});
|
Reference in a new issue