blob: 76212d03bfe79b1256500622dc021f1a47e30788 [file] [log] [blame]
describe('ActivityCtrl', function() {
beforeEach(angular.mock.module(require('./').name))
var scope, ctrl
beforeEach(inject(function($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('ActivityCtrl', {$scope: scope})
}))
it('should ...', inject(function() {
expect(1).toEqual(1)
}))
})