Skip to content

Instantly share code, notes, and snippets.

@gnarf
Created May 12, 2011 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gnarf/968692 to your computer and use it in GitHub Desktop.
Save gnarf/968692 to your computer and use it in GitHub Desktop.
function present( value, array, message ) {
QUnit.push( jQuery.inArray( value, array ) !== -1 , value, array, message );
}
function notPresent( value, array, message ) {
QUnit.push( jQuery.inArray( value, array ) === -1 , value, array, message );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment