Skip to content

Instantly share code, notes, and snippets.

@adkron
Created September 11, 2009 02:10
Show Gist options
  • Save adkron/185011 to your computer and use it in GitHub Desktop.
Save adkron/185011 to your computer and use it in GitHub Desktop.
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