ggdworkshop/lib/jquery/jquery-validation/test/additional/creditcard.js
German Correa 9bb8198f1e Ajustes de formulario y js-lib ordering
Agrega librerias y temas gráficos de forma local, no cdn,
directorio local lib

Formulario de registro:
    - select se hacen con select2, falta validarlos
    - validación de nombre, apellido y mail ya funcionando con
    jquery-validate
    - arregla temas gráficos y de presentación
  FALTA:
    - validar los select
    - validar los radiobutton
    - TODA LA PUTA LOGICA DE BACK-END DE NUEVO!!!
2017-11-29 18:15:01 -03:00

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" );
} );