1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
import pytest
import falcon
import falcon.asgi
import falcon.testing as testing
class TestSlots:
def test_slots_request(self, asgi):
req = testing.create_asgi_req() if asgi else testing.create_req()
try:
req.doesnt = 'exist'
except AttributeError:
pytest.fail('Unable to add additional variables dynamically')
def test_slots_response(self, asgi):
if asgi:
resp = falcon.asgi.Response()
else:
resp = falcon.Response()
try:
resp.doesnt = 'exist'
except AttributeError:
pytest.fail('Unable to add additional variables dynamically')
|