def test_list(self): self.assertFalse(prose.entry_is_int(LIST))
def test_var(self): self.assertFalse(prose.entry_is_int(VAR))
def test_int(self): self.assertTrue(prose.entry_is_int(INT))
def test_str(self): self.assertFalse(prose.entry_is_int(STR))
def test_empty_list(self): self.assertFalse(prose.entry_is_int(()))