Skip to content

Commit 1f3618b

Browse files
committed
update tests
1 parent d06f8fb commit 1f3618b

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

tests/entities/models/types/app.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ async def my_find_many_objects(req: Request):
2121
return Response.data(values)
2222
group.define_handler("myFindManyObjects", my_find_many_objects)
2323
app.main_namespace().define_model_handler_group("Support", support_handler_group)
24+
return app
+12-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from teo.test import TestCase
1+
from teo.test import TestCase, TestRequest
22
from teo.test.matchers import match_json_value, ignore
33
from .app import load_app
44

@@ -10,13 +10,11 @@ def load_app(cls):
1010
return load_app()
1111

1212
async def test_create_object(self):
13-
response = await self.server.process({
14-
"method": "POST",
15-
"uri": "/Support/myCreateObject",
16-
"body": {
17-
"int32": 1,
18-
},
19-
})
13+
request = TestRequest(
14+
method='POST',
15+
uri='/Support/myCreateObject',
16+
body={'int32': 1})
17+
response = await self.server.process(request)
2018
match_json_value(response.body_as_json(), {
2119
"data": {
2220
"id": ignore,
@@ -25,15 +23,15 @@ async def test_create_object(self):
2523
})
2624

2725
async def test_find_many_objects(self):
28-
response = await self.server.process({
29-
"method": "POST",
30-
"uri": "/Support/myFindManyObjects",
31-
"body": {
26+
request = TestRequest(
27+
method='POST',
28+
uri='/Support/myFindManyObjects',
29+
body={
3230
"orderBy": {
3331
"id": "asc"
3432
}
35-
},
36-
})
33+
})
34+
response = await self.server.process(request)
3735
match_json_value(response.body_as_json(), {
3836
"data": [],
3937
})

0 commit comments

Comments
 (0)