Created
September 11, 2009 02:10
-
-
Save adkron/185011 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
testRegistrationIsValidRunsAllValidationsWhenCallingIsValid: function() {with(this) { | |
callCountOne = 0; | |
callCountTwo = 0; | |
var mockFunOne = function() { callCountOne++; console.log(callCountOne); }; | |
console.log(callCountOne.toString() + 'a'); | |
var mockFunTwo = function() { this.callCountTwo++; }; | |
testObject.registerValidation(mockFunOne, this); | |
testObject.registerValidation(mockFunTwo, this); | |
testObject.isValid(); | |
assertEqual(1, callCountOne); | |
assertEqual(1, callCountTwo); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment