We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5e361 commit dd4325aCopy full SHA for dd4325a
tests/Functional/Parameters/IriFilterTest.php
@@ -40,9 +40,13 @@ public static function getResources(): array
40
public function testIriFilter(): void
41
{
42
$client = $this->createClient();
43
+
44
$res = $client->request('GET', '/chickens?chickenCoop=/chicken_coops/2')->toArray();
45
$this->assertCount(1, $res['member']);
46
$this->assertEquals('/chicken_coops/2', $res['member'][0]['chickenCoop']);
47
48
+ $res = $client->request('GET', '/chickens?chickenCoop=/chicken_coops/595')->toArray();
49
+ $this->assertCount(0, $res['member']);
50
}
51
52
public function testIriFilterMultiple(): void
0 commit comments