Ejemplo n.º 1
0
 def test_numbers_lower_upper(self):
     numbers_lower_upper_password = "******"
     check = checklist(numbers_lower_upper_password)
     assert check["lower"] is True and check["capital"] is True and check[
         "numbers"] is True and check["special"] is False
Ejemplo n.º 2
0
 def test_lower_upper(self):
     lower_upper_password = "******"
     check = checklist(lower_upper_password)
     assert check["lower"] is True and check["capital"] is True and check[
         "numbers"] is False and check["special"] is False
Ejemplo n.º 3
0
 def test_numbers(self):
     numbers_password = "******"
     check = checklist(numbers_password)
     assert check["lower"] is False and check["capital"] is False and check[
         "numbers"] is True and check["special"] is False
Ejemplo n.º 4
0
 def test_upper(self):
     upper_password = "******"
     check = checklist(upper_password)
     assert check["lower"] is False and check["capital"] is True and check[
         "numbers"] is False and check["special"] is False
Ejemplo n.º 5
0
 def test_numbers_lower_upper(self):
     numbers_lower_upper_password = "******"
     check = checklist(numbers_lower_upper_password)
     assert check["lower"] is True and check["capital"] is True and check["numbers"] is True and check["special"] is False
Ejemplo n.º 6
0
 def test_numbers(self):
     numbers_password = "******"
     check = checklist(numbers_password)
     assert check["lower"] is False and check["capital"] is False and check["numbers"] is True and check["special"] is False
Ejemplo n.º 7
0
 def test_lower_upper(self):
     lower_upper_password = "******"
     check = checklist(lower_upper_password)
     assert check["lower"] is True and check["capital"] is True and check["numbers"] is False and check["special"] is False
Ejemplo n.º 8
0
 def test_upper(self):
     upper_password = "******"
     check = checklist(upper_password)
     assert check["lower"] is False and check["capital"] is True and check["numbers"] is False and check["special"] is False