def test_Lead_todict_returns_dict(self): amolead = Lead( name=self.name, status_id=123, ) d = amolead.todict() self.assertIsNotNone(d) self.assertIsInstance(d, dict)