| author | ymh <ymh.work@gmail.com> |
| Wed, 09 Nov 2016 23:41:15 +0100 | |
| changeset 407 | 2dba812c7ef2 |
| parent 28 | b0b56e0f8c7f |
| permissions | -rw-r--r-- |
| 28 | 1 |
import Ember from 'ember'; |
2 |
import CellEditingMixin from '../../../mixins/cell-editing'; |
|
3 |
import { module, test } from 'qunit'; |
|
4 |
||
5 |
module('Unit | Mixin | cell editing'); |
|
6 |
||
7 |
// Replace this with your real tests. |
|
8 |
test('it works', function(assert) { |
|
9 |
let CellEditingObject = Ember.Object.extend(CellEditingMixin); |
|
10 |
let subject = CellEditingObject.create(); |
|
11 |
assert.ok(subject); |
|
12 |
}); |