OSDN Git Service

78af26367e61b104b12273c4cb3ce4ed677c0672
[eos/base.git] / zephyr / client / app / route / dashboard / dashboard.controller.spec.js
1 'use strict';
2
3 describe('Controller: RouteCtrl', function () {
4
5   // load the controller's module
6   beforeEach(module('zephyrApp'));
7
8   var RouteCtrl, scope;
9
10   // Initialize the controller and a mock scope
11   beforeEach(inject(function ($controller, $rootScope) {
12     scope = $rootScope.$new();
13     RouteCtrl = $controller('RouteCtrl', {
14       $scope: scope
15     });
16   }));
17
18   it('should ...', function () {
19     expect(1).toEqual(1);
20   });
21 });