Skip to content
Snippets Groups Projects
Commit f244a7bd authored by Bertrand PINEL's avatar Bertrand PINEL
Browse files

Big cleanup removing fake entities...

parent 57c25b6a
No related branches found
No related tags found
No related merge requests found
<h2 id="title">Welcome to Ember</h2>
<h2 id="title">A Guinea Pig in the Cloud</h2>
{{outlet}}
\ No newline at end of file
<h2>List of toto</h2>
{{models-table
data=totoTableContent
columns=totoTableColumns}}
{{outlet}}
\ No newline at end of file
export default function() {
this.namespace = '';
this.get('/totos', 'totos');
}
import {
Factory,
faker
} from 'ember-cli-mirage';
export default Factory.extend({
//default generated factory
title () {
return faker.name.findName()
},
description () {
return faker.name.findName()
},
number () {
return faker.random.number({min: 0,max: 10000})
},
isVisible () {
return faker.random.boolean()
}
})
\ No newline at end of file
import {
Model
} from 'ember-cli-mirage';
export default Model.extend({
});
\ No newline at end of file
export default function(server) {
server.createList('toto', 10);
}
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Controller | entity-factory', function(hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function(assert) {
let controller = this.owner.lookup('controller:entity-factory');
assert.ok(controller);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment