main
 1import {
 2  moduleFor,
 3  test
 4} from 'ember-qunit';
 5
 6moduleFor('route:cakes/index', 'CakesIndexRoute', {
 7  // Specify the other units that are required for this test.
 8  // needs: ['controller:foo']
 9});
10
11test('it exists', function() {
12  var route = this.subject();
13  ok(route);
14});