Exemplo n.º 1
0
 def test_strings_dont_match(self):
     pc = PasswordChecker('foo', 'bar')
     self.assertFalse(pc.check_strings_match())
Exemplo n.º 2
0
 def test_strings_match(self):
     pc = PasswordChecker('foo', 'foo')
     self.assertTrue(pc.check_strings_match())