Y-SLD/assets/plugins/jquery-validation/test/additional/creditcard.js

8 lines
325 B
JavaScript
Raw Normal View History

2024-03-01 11:23:55 +00:00
test( "creditcard", function() {
var method = methodTest( "creditcard" );
ok( method( "4111-1111-1111-1111" ), "Valid creditcard number" );
ok( method( "4111 1111 1111 1111" ), "Valid creditcard number" );
ok( !method( "41111" ), "Invalid creditcard number" );
ok( !method( "asdf" ), "Invalid creditcard number" );
} );