DeleteModel Mixin

This commit is contained in:
Matthew Ryan Dillon 2015-11-03 13:58:01 -07:00
parent cc85ee6f27
commit 3f5eb26a33
3 changed files with 31 additions and 9 deletions

View file

@ -0,0 +1,12 @@
import Ember from 'ember';
import DeleteModelMixin from '../../../mixins/delete-model';
import { module, test } from 'qunit';
module('Unit | Mixin | delete model');
// Replace this with your real tests.
test('it works', function(assert) {
var DeleteModelObject = Ember.Object.extend(DeleteModelMixin);
var subject = DeleteModelObject.create();
assert.ok(subject);
});