Test new species (plus minor cleanup)
This commit is contained in:
parent
30e7000a81
commit
19ce579983
4 changed files with 21 additions and 1 deletions
|
@ -13,6 +13,7 @@ export function testConfig() {
|
||||||
this.get('/users/:id');
|
this.get('/users/:id');
|
||||||
|
|
||||||
this.get('/species');
|
this.get('/species');
|
||||||
|
this.post('/species');
|
||||||
this.get('/species/:id');
|
this.get('/species/:id');
|
||||||
this.put('/species/:id');
|
this.put('/species/:id');
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ export default Mixin.create({
|
||||||
},
|
},
|
||||||
|
|
||||||
afterModel: function(model) {
|
afterModel: function(model) {
|
||||||
if (!model.get('canEdit')) {
|
if (!model.get('isNew') && !model.get('canEdit')) {
|
||||||
this.transitionTo(this.get('fallbackRouteAfter'), model.get('id'));
|
this.transitionTo(this.get('fallbackRouteAfter'), model.get('id'));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -7,4 +7,9 @@ export default Route.extend(ElevatedAccess, {
|
||||||
// Required for ElevatedAccess mixin
|
// Required for ElevatedAccess mixin
|
||||||
fallbackRouteBefore: 'protected.species.index',
|
fallbackRouteBefore: 'protected.species.index',
|
||||||
fallbackRouteAfter: 'protected.species.show',
|
fallbackRouteAfter: 'protected.species.show',
|
||||||
|
|
||||||
|
model: function(params) {
|
||||||
|
return this.store.findRecord('species', params.species_id);
|
||||||
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -54,3 +54,17 @@ test('editing /species/:id/edit', function(assert) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('creating /species/new', function(assert) {
|
||||||
|
visit(`/species/new`);
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(currentURL(), `/species/new`);
|
||||||
|
fillIn('.species-name', 'New Species Name');
|
||||||
|
click('.save-species');
|
||||||
|
|
||||||
|
andThen(function() {
|
||||||
|
assert.equal(find(".flakes-information-box > legend > em").text().trim(), 'New Species Name');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
Reference in a new issue