Untitled
Anonymous
plain_text
09/04/2023 11:32 AM
652 B
16
Indexable
multiple_list = MultipleList(user_id=1)
with self.assertRaises(ListLimitExceededError):
for n in range(101):
self.app.post(
self.path,
headers=self.headers,
content_type='application/json',
data=json.dumps({
'name': f'My Favorite Venues {n}',
'description': f'Some description {n}'
})
)
Editor is loading...