Adding panel info.

This commit is contained in:
Gunther Brunner
2014-05-01 22:42:35 +09:00
parent cceded14c2
commit 7a598af243
10 changed files with 119 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
describe('InfoCtrl', function () {
beforeEach(module('stf.info'));
var scope, ctrl;
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
ctrl = $controller('InfoCtrl', {$scope: scope});
}));
it('should ...', inject(function () {
expect(1).toEqual(1);
}));
});