Untitled
unknown
plain_text
2 years ago
489 B
11
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...