def test_is_lucky_ticket_12321_should_be_true(self): actually = is_lucky_ticket('12321') self.assertTrue(actually)
def test_is_lucky_ticket_12331_should_be_false(self): actually = is_lucky_ticket('12331') self.assertFalse(actually)