mirror of
https://github.com/jquery-validation/jquery-validation.git
synced 2025-12-14 20:35:47 +01:00
8 lines
367 B
JavaScript
8 lines
367 B
JavaScript
QUnit.test( "creditcard", function( assert ) {
|
|
var method = methodTest( "creditcard" );
|
|
assert.ok( method( "4111-1111-1111-1111" ), "Valid creditcard number" );
|
|
assert.ok( method( "4111 1111 1111 1111" ), "Valid creditcard number" );
|
|
assert.ok( !method( "41111" ), "Invalid creditcard number" );
|
|
assert.ok( !method( "asdf" ), "Invalid creditcard number" );
|
|
} );
|