- First implementation of filter for languages.
- Language is now an array in the document
- various corrections linked to the above change
- Simplify the IndexDocumet loop
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);
});