mirror of
https://github.com/jquery-validation/jquery-validation.git
synced 2025-12-14 20:35:47 +01:00
7 lines
299 B
JavaScript
7 lines
299 B
JavaScript
QUnit.test( "cnhBR", function( assert ) {
|
|
var method = methodTest( "cnhBR" );
|
|
assert.ok( method( "00000000119" ), "Valid driver's license number" );
|
|
assert.ok( !method( "11111111111" ), "Invalid driver's license number" );
|
|
assert.ok( !method( "asdf" ), "Invalid driver's license number" );
|
|
} );
|