def test_confirm_the_keys_is_true(self): p = Passport( data= 'eyr:2029 ecl:blu cid:129 byr:1989 iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm' ) actual = p.confirm_the_keys() self.assertTrue(actual)
def test_confirm_the_keys_false_less_than_seven(self): p = Passport( data='cid:129 byr:1989 iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm' ) actual = p.confirm_the_keys() self.assertFalse(actual)