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 it is on the RESERVED_WORDS #4

Closed rodolfoghi closed 4 years ago

rodolfoghi commented 4 years ago
test('when it is on the RESERVED_WORDS', () => {
      RESERVED_NUMBERS.forEach(cpf => expect(isValid(cpf)).toBe(false));
    });