Compare commits
1 Commits
main
...
325e680674
Author | SHA1 | Date | |
---|---|---|---|
|
325e680674 |
@ -1 +1 @@
|
|||||||
from ki import models, commands, routes # noqa
|
from ki import models, commands, routes # noqa
|
||||||
|
@ -22,13 +22,14 @@ class TestSkillsEndpoint(unittest.TestCase):
|
|||||||
self.assertEqual(response.status_code, 200)
|
self.assertEqual(response.status_code, 200)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
{
|
{
|
||||||
"skills": [
|
"skills": [{
|
||||||
{"id": 1, "name": "PHP"},
|
"id": 1,
|
||||||
{"id": 3, "name": "Python"}
|
"name": "PHP"
|
||||||
]
|
}, {
|
||||||
},
|
"id": 3,
|
||||||
response.json
|
"name": "Python"
|
||||||
)
|
}]
|
||||||
|
}, response.json)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "main":
|
if __name__ == "main":
|
||||||
|
Loading…
Reference in New Issue
Block a user