This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/tests/unit/models/strain-test.js
2015-10-29 20:52:16 -07:00

15 lines
347 B
JavaScript

import {
moduleForModel,
test
} from 'ember-qunit';
moduleForModel('strain', {
// Specify the other units that are required for this test.
needs: ['model:measurement', 'model:characteristic', 'model:species']
});
test('it exists', function(assert) {
var model = this.subject();
// var store = this.store();
assert.ok(!!model);
});