main
 1import {
 2  moduleForModel,
 3  test
 4} from 'ember-qunit';
 5
 6moduleForModel('user', 'User', {
 7  // Specify the other units that are required for this test.
 8  needs: []
 9});
10
11test('it exists', function() {
12  var model = this.subject();
13  // var store = this.store();
14  ok(!!model);
15});