--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/server/bo_client/tests/unit/mixins/cell-editing-test.js Fri Jan 15 15:35:00 2016 +0100
@@ -0,0 +1,12 @@
+import Ember from 'ember';
+import CellEditingMixin from '../../../mixins/cell-editing';
+import { module, test } from 'qunit';
+
+module('Unit | Mixin | cell editing');
+
+// Replace this with your real tests.
+test('it works', function(assert) {
+ let CellEditingObject = Ember.Object.extend(CellEditingMixin);
+ let subject = CellEditingObject.create();
+ assert.ok(subject);
+});