WIP - rebuilding from ground up
This commit is contained in:
parent
62020a9865
commit
ced3f7d2d2
16 changed files with 154 additions and 4 deletions
15
tests/unit/models/strain-test.js
Normal file
15
tests/unit/models/strain-test.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import {
|
||||
moduleForModel,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleForModel('strain', {
|
||||
// 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);
|
||||
});
|
Reference in a new issue