We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0cc7f4 commit db8e89aCopy full SHA for db8e89a
1 file changed
tests/Feature/AliasTest.php
@@ -36,4 +36,11 @@ public function testCanDeleteAlias(): void
36
$this->expectException(ObjectNotFound::class);
37
$this->client()->aliases['companies']->retrieve();
38
}
39
+
40
+ public function testCanRetrieveAllAliases(): void
41
+ {
42
+ $response = $this->client()->aliases->retrieve();
43
44
+ $this->assertEquals(['aliases' => [0 => $this->sampleAliasResponse]], $response);
45
+ }
46
0 commit comments