fivetanley / ember-cli-migrator

migrate your files to the standard ember-cli structure, preserving git history
MIT License
106 stars 22 forks source link

More canonical router test and output #23

Closed kiwiupover closed 9 years ago

kiwiupover commented 9 years ago

This is a more canonical router test than previous version. #21 fixes this test case. Given so this is dependant on that PR

App.Router.reopen({
  location: 'auto'
});

App.Router.map(function() {
   this.resource('myresource', {path:'/myresource/:resource_id'}, function(){
     this.route('details');
   });
 })
kiwiupover commented 9 years ago

Since #21 was merged this PR is good to go.

igorT commented 9 years ago

Thanks!