Set up tests for existing pod

This commit is contained in:
Matthew Dillon 2015-11-05 10:16:27 -07:00
parent d59aa0e321
commit 35c53fc79b
5 changed files with 89 additions and 3 deletions

View file

@ -0,0 +1,10 @@
import Mirage, { faker } from 'ember-cli-mirage';
export default Mirage.Factory.extend({
characteristicName() { return faker.lorem.words().join(' '); },
characteristicTypeName() { return faker.lorem.words().join(' '); },
strains: [],
measurements: [],
sortOrder: faker.random.number(),
canEdit: faker.random.boolean(),
});