chore(dashboard): move to the mod directory

This commit is contained in:
Brandon Philips
2013-10-08 11:17:12 -07:00
parent 13f7257dd7
commit 5e604b7a18
44 changed files with 1 additions and 1 deletions

View File

@ -0,0 +1,22 @@
'use strict';
describe('Controller: MainCtrl', function () {
// load the controller's module
beforeEach(module('etcdDashboardApp'));
var MainCtrl,
scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
MainCtrl = $controller('MainCtrl', {
$scope: scope
});
}));
it('should attach a list of awesomeThings to the scope', function () {
expect(scope.awesomeThings.length).toBe(3);
});
});