rodolfoghi / cpf-util-rust

CPF utils written in Rust
https://crates.io/crates/cpf_util
MIT License
7 stars 1 forks source link

should return false when is a CPF invalid #9

Closed rodolfoghi closed 4 years ago

rodolfoghi commented 4 years ago
   test('when is a CPF invalid', () => {
      expect(isValid('11257245286')).toBe(false);
    });