Renamed FileSystem to Explorer.

This commit is contained in:
Gunther Brunner
2015-10-01 16:55:13 +09:00
parent ae449a631a
commit 82c20c28d1
7 changed files with 13 additions and 13 deletions

View File

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