This commit is contained in:
Brittany Storoz 2015-07-06 17:59:29 -04:00
Родитель b80eb737e8
Коммит 69276f11e1
5 изменённых файлов: 26 добавлений и 0 удалений

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

@ -0,0 +1,7 @@
import Ember from 'ember';
export default Ember.Route.extend({
redirect: function() {
this.transitionTo('podcasts');
}
});

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

@ -1 +1,3 @@
<h1>High Fidelity</h1>
{{outlet}}

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

@ -1 +1,4 @@
<h2>Podcasts</h2>
{{#linkTo 'podcasts.new'}}Add New Podcast{{/linkTo}}
{{outlet}}

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

@ -0,0 +1,3 @@
<h2>Add New Podcast</h2>
{{outlet}}

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

@ -0,0 +1,11 @@
import { moduleFor, test } from 'ember-qunit';
moduleFor('route:application', 'Unit | Route | application', {
// 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);
});