Example #1
0
 def test_validity_check_with_second_example_input(self):
     self.assertFalse(code.is_valid_password("abbceffg"))
Example #2
0
 def test_validity_check_with_good_password(self):
     self.assertTrue(code.is_valid_password("ddabcee"))
Example #3
0
 def test_validity_check_with_first_example_input(self):
     self.assertFalse(code.is_valid_password("hijklmmn"))
Example #4
0
 def test_validity_check_with_third_example_input(self):
     self.assertFalse(code.is_valid_password("abcddgjk"))
Example #5
0
 def test_validity_check_with_second_example_input(self):
     self.assertFalse(code.is_valid_password("abbceffg"))
Example #6
0
 def test_validity_check_with_first_example_input(self):
     self.assertFalse(code.is_valid_password("hijklmmn"))
Example #7
0
 def test_validity_check_with_good_password(self):
     self.assertTrue(code.is_valid_password("ddabcee"))
Example #8
0
 def test_validity_check_with_third_example_input(self):
     self.assertFalse(code.is_valid_password("abcddgjk"))