Adding Activity partial

This commit is contained in:
Gunther Brunner
2014-04-04 17:34:30 +09:00
parent 63389ab7f8
commit 6cfe5cf9bc
9 changed files with 425 additions and 6 deletions

View File

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