implement integration test for relationship update and delete

This commit is contained in:
2025-04-24 16:06:20 +02:00
parent c8d68c5cc7
commit cd2116622f
10 changed files with 96 additions and 16 deletions

View File

@@ -0,0 +1,23 @@
meta {
name: delete_relationship
type: http
seq: 21
}
patch {
url: http://localhost:8080/relationship/1/2
body: json
auth: inherit
}
headers {
X-User-ID: 1
}
body:json {
{
"relationship": {
"verified": true
}
}
}

View File

@@ -0,0 +1,19 @@
meta {
name: verify_relationship
type: http
seq: 20
}
patch {
url: http://localhost:8080/relationship/1/2
body: json
auth: inherit
}
body:json {
{
"relationship": {
"verified": false
}
}
}