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