cms/app-client/tests/unit/models/geostat-test.js
author Chloe Laisne <chloe.laisne@gmail.com>
Fri, 23 Sep 2016 15:56:38 +0200
changeset 285 6d8e7e6dc83c
permissions -rw-r--r--
Geostat model
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
285
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     1
import { moduleForModel, test } from 'ember-qunit';
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     2
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     3
moduleForModel('geostat', 'Unit | Model | geostat', {
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     4
  // Specify the other units that are required for this test.
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     5
  needs: []
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     6
});
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     7
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     8
test('it exists', function(assert) {
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
     9
  let model = this.subject();
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
    10
  // let store = this.store();
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
    11
  assert.ok(!!model);
6d8e7e6dc83c Geostat model
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff changeset
    12
});