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