示例#1
0
 def test_strings_dont_match(self):
     pc = PasswordChecker('foo', 'bar')
     self.assertFalse(pc.check_strings_match())
示例#2
0
 def test_strings_match(self):
     pc = PasswordChecker('foo', 'foo')
     self.assertTrue(pc.check_strings_match())