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