Roughing in users resource
This commit is contained in:
parent
3f0b074619
commit
5048fb7695
11 changed files with 154 additions and 2 deletions
15
tests/unit/models/user-test.js
Normal file
15
tests/unit/models/user-test.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import {
|
||||
moduleForModel,
|
||||
test
|
||||
} from 'ember-qunit';
|
||||
|
||||
moduleForModel('user', {
|
||||
// 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