Skip to content

qmates-tech/password-validator-kata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Password validator kata

The task of today is to design a password verification program.

The password verification program will take a password as an argument and the password will be valid only if all these conditions are correct:

  • Contains at least 8 characters
  • Contains at least one capital letter
  • Contains at least one lowercase letter
  • Contains at least a number
  • Contains at least a special character in this list . * # @ $ % &.
  • Any other characters are not authorized.

In this program, the only thing that matters is to know if the password is valid. Not why it is not.

Nevertheless, for the magic to work properly, you will need to follow the TDD rules. 🧙‍♂️

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published