We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0171a3d commit 4ef7760Copy full SHA for 4ef7760
tests/unit/contrib/aiohttp/test_aiohttp_requests.py
@@ -0,0 +1,9 @@
1
+import pytest
2
+
3
+from openapi_core.contrib.aiohttp.requests import AIOHTTPOpenAPIWebRequest
4
5
6
+class TestAIOHTTPOpenAPIWebRequest:
7
+ def test_type_invalid(self):
8
+ with pytest.raises(TypeError):
9
+ AIOHTTPOpenAPIWebRequest(None)
tests/unit/contrib/aiohttp/test_aiohttp_responses.py
+from openapi_core.contrib.aiohttp.responses import AIOHTTPOpenAPIWebResponse
+class TestAIOHTTPOpenAPIWebResponse:
+ AIOHTTPOpenAPIWebResponse(None)
0 commit comments