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