This commit is contained in:
Brittany Storoz 2015-07-17 20:49:24 -04:00
Родитель ba0919fddd
Коммит c76512e4e6
2 изменённых файлов: 18 добавлений и 0 удалений

7
app/routes/podcast.js Normal file
Просмотреть файл

@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
model: function(params) {
return this.store.find('podcast', params.podcast_id);
}
});

Просмотреть файл

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:podcast', 'Unit | Route | podcast', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
});
test('it exists', function(assert) {
var route = this.subject();
assert.ok(route);
});