server/bo_client/tests/unit/mixins/cell-editing-test.js
changeset 28 b0b56e0f8c7f
equal deleted inserted replaced
27:a2342f26c9de 28:b0b56e0f8c7f
       
     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 });