You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rezepte-test.js 356B

123456789101112
  1. import { module, test } from 'qunit';
  2. import { setupTest } from 'ember-qunit';
  3. module('Unit | Model | rezepte', function(hooks) {
  4. setupTest(hooks);
  5. test('it has the right type', function(assert) {
  6. let store = this.owner.lookup('service:store');
  7. let model = store.createRecord('rezept', {titel: 'Testrezept'});
  8. assert.ok(model);
  9. });
  10. });