用于操纵css的角度指令的单元测试用例

时间:2015-06-10 19:46:06

标签: angularjs unit-testing directive

angular.module('myApp').directive(errorDirective, function(){
return {

link: function(scope, element, attributes){
      element.bind('change paste keyup', function(){
      var value= $(this).val();
      if(value < 100)
         $('#inputerror').removeClass('dispnone').addClass('dispblock');
      else if(value >100 && value <500)
         $('#inputerror').removeClass('disp').addClass('dblock');
      else
      $('#inputerror').removeClass('dnone').addClass('displayblock');
      });
      }
}
});

在我的html文件中

<input id= 'inputvalue' ng-model="inputvalue" errorDirective/>
<span id= 'inputerror' class="errorNone"><span>Error occurs </span></span>

如何编写给定指令的单元测试用例??

0 个答案:

没有答案