def test_other_string(self): self.assertEqual(validate_string_question("non empty"), (True, "non empty"))
def test_empty_string(self): self.assertEqual(validate_string_question(""), (False, None))