Add extra unit test for zipcodeUS method, based on GH comment

This commit is contained in:
Jörn Zaefferer
2013-05-20 15:53:31 +02:00
parent ed51405d84
commit b51e86f558

View File

@@ -992,6 +992,7 @@ test("zipcodeUS", function() {
ok(!method( "1234" ), "Invalid zip" );
ok(!method( "123-23" ), "Invalid zip" );
ok(!method( "12345-43" ), "Invalid zip" );
ok(!method( "123456-7890" ), "Invalid zip" );
});
})(jQuery);