class TestDictList(NampyTestCase): """ Test core elements ported from COBRApy""" def test_object(self): self.object = Object("test_object_id") self.dictlist = DictList() self.dictlist.append(self.object) self.assertEqual(self.dictlist[0].id, "test_object_id")
def test_object(self): self.object = Object("test_object_id") self.dictlist = DictList() self.dictlist.append(self.object) self.assertEqual(self.dictlist[0].id, "test_object_id")