Adding Activity mockup.

This commit is contained in:
Gunther Brunner
2014-04-30 18:59:30 +09:00
parent e184cb7c85
commit efa5875d60
9 changed files with 96 additions and 4 deletions

View File

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