Sort by strains and measurements

This commit is contained in:
Matthew Dillon 2015-03-19 13:01:43 -08:00
parent 86b3fb46d7
commit 37becad20a
11 changed files with 95 additions and 18 deletions

View file

@ -0,0 +1,15 @@
import {
moduleFor,
test
} from 'ember-qunit';
moduleFor('controller:measurements/index', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
// Replace this with your real tests.
test('it exists', function(assert) {
var controller = this.subject();
assert.ok(controller);
});

View file

@ -0,0 +1,15 @@
import {
moduleFor,
test
} from 'ember-qunit';
moduleFor('controller:sortable', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
// Replace this with your real tests.
test('it exists', function(assert) {
var controller = this.subject();
assert.ok(controller);
});

View file

@ -0,0 +1,15 @@
import {
moduleFor,
test
} from 'ember-qunit';
moduleFor('controller:strains/index', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
// Replace this with your real tests.
test('it exists', function(assert) {
var controller = this.subject();
assert.ok(controller);
});