author | ymh <ymh.work@gmail.com> |
Tue, 20 Mar 2018 15:02:40 +0100 | |
changeset 573 | 25f3d28f51b2 |
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 |
}); |