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