Rename dashboard/upload to dashboard/install.

This commit is contained in:
Simo Kinnunen
2014-09-04 17:17:54 +09:00
parent fdfcdf913d
commit 2174de0eee
13 changed files with 13 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
describe('InstallCtrl', function () {
beforeEach(angular.mock.module(require('./').name));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('InstallCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});