aboutsummaryrefslogtreecommitdiffstats
path: root/test/ValidatorsTest.js
diff options
context:
space:
mode:
authorAndres Ornelas2010-07-27 10:44:46 -0700
committerAndres Ornelas2010-07-27 10:44:46 -0700
commitb42072733c3afd03a49457d88ffed28ebe55655e (patch)
tree2fa2b8703cdc75fe19a204d2c9677e27d33c8176 /test/ValidatorsTest.js
parent2f7c538628929888ce7c99b9577e34f8c87211f7 (diff)
parent8ddee9bb25ade2bbe7d57db6353b29867606c184 (diff)
downloadangular.js-b42072733c3afd03a49457d88ffed28ebe55655e.tar.bz2
Merge branch 'master' of github.com:angular/angular.js into future
Diffstat (limited to 'test/ValidatorsTest.js')
-rw-r--r--test/ValidatorsTest.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ValidatorsTest.js b/test/ValidatorsTest.js
index 573c340d..2e156f84 100644
--- a/test/ValidatorsTest.js
+++ b/test/ValidatorsTest.js
@@ -7,7 +7,7 @@ ValidatorTest.prototype.testItShouldHaveThisSet = function() {
validator.last = last;
validator._this = this;
};
- var scope = compile('<input name="name" ng-validate="myValidator:\'hevery\'"/>');
+ var scope = compile('<input name="name" ng:validate="myValidator:\'hevery\'"/>');
scope.name = 'misko';
scope.$init();
assertEquals('misko', validator.first);
@@ -109,7 +109,7 @@ describe('Validator:asynchronous', function(){
it('should make a request and show spinner', function(){
var value, fn;
- var scope = compile('<input type="text" name="name" ng-validate="asynchronous:asyncFn"/>');
+ var scope = compile('<input type="text" name="name" ng:validate="asynchronous:asyncFn"/>');
scope.$init();
var input = scope.$element;
scope.asyncFn = function(v,f){
@@ -151,7 +151,7 @@ describe('Validator:asynchronous', function(){
});
it("should handle update function", function(){
- var scope = angular.compile('<input name="name" ng-validate="asynchronous:asyncFn:updateFn"/>');
+ var scope = angular.compile('<input name="name" ng:validate="asynchronous:asyncFn:updateFn"/>');
scope.asyncFn = jasmine.createSpy();
scope.updateFn = jasmine.createSpy();
scope.name = 'misko';