We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c85c382 commit d776ccdCopy full SHA for d776ccd
backend/src/openarchiefbeheer/destruction/tests/test_endpoints.py
@@ -120,6 +120,12 @@ def test_create_destruction_list(self):
120
self.assertEqual(
121
items[1].zaak.url, "http://localhost:8003/zaken/api/v1/zaken/222-222-222"
122
)
123
+ self.assertEqual(
124
+ items[0]._zaak_url, "http://localhost:8003/zaken/api/v1/zaken/111-111-111"
125
+ )
126
127
+ items[1]._zaak_url, "http://localhost:8003/zaken/api/v1/zaken/222-222-222"
128
129
130
self.assertEqual(destruction_list.author, record_manager)
131
0 commit comments