@@ -58,6 +58,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
58
58
responseDocument . Links . Last . Should ( ) . BeNull ( ) ;
59
59
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
60
60
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
61
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
61
62
62
63
responseDocument . Data . SingleValue . ShouldNotBeNull ( ) ;
63
64
responseDocument . Data . SingleValue . Links . ShouldNotBeNull ( ) ;
@@ -101,6 +102,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
101
102
responseDocument . Links . Last . Should ( ) . Be ( responseDocument . Links . Self ) ;
102
103
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
103
104
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
105
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
104
106
105
107
responseDocument . Data . ManyValue . ShouldHaveCount ( 1 ) ;
106
108
@@ -167,6 +169,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
167
169
responseDocument . Links . Last . Should ( ) . BeNull ( ) ;
168
170
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
169
171
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
172
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
170
173
171
174
string albumLink = $ "{ HostPrefix } { PathPrefix } /photoAlbums/{ photo . Album . StringId } ";
172
175
@@ -211,6 +214,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
211
214
responseDocument . Links . Last . Should ( ) . Be ( responseDocument . Links . Self ) ;
212
215
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
213
216
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
217
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
214
218
215
219
responseDocument . Data . ManyValue . ShouldHaveCount ( 1 ) ;
216
220
@@ -259,6 +263,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
259
263
responseDocument . Links . Last . Should ( ) . BeNull ( ) ;
260
264
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
261
265
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
266
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
262
267
263
268
responseDocument . Data . SingleValue . ShouldNotBeNull ( ) ;
264
269
responseDocument . Data . SingleValue . Links . Should ( ) . BeNull ( ) ;
@@ -293,6 +298,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
293
298
responseDocument . Links . Last . Should ( ) . Be ( responseDocument . Links . Self ) ;
294
299
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
295
300
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
301
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
296
302
297
303
responseDocument . Data . ManyValue . ShouldHaveCount ( 1 ) ;
298
304
responseDocument . Data . ManyValue [ 0 ] . Links . Should ( ) . BeNull ( ) ;
@@ -354,6 +360,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
354
360
responseDocument . Links . Last . Should ( ) . BeNull ( ) ;
355
361
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
356
362
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
363
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
357
364
358
365
responseDocument . Data . SingleValue . ShouldNotBeNull ( ) ;
359
366
responseDocument . Data . SingleValue . Links . ShouldNotBeNull ( ) ;
@@ -437,6 +444,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
437
444
responseDocument . Links . Last . Should ( ) . BeNull ( ) ;
438
445
responseDocument . Links . Prev . Should ( ) . BeNull ( ) ;
439
446
responseDocument . Links . Next . Should ( ) . BeNull ( ) ;
447
+ responseDocument . Links . DescribedBy . Should ( ) . BeNull ( ) ;
440
448
441
449
string photoLink = $ "{ HostPrefix } { PathPrefix } /photos/{ existingPhoto . StringId } ";
442
450
0 commit comments