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 7bf4fba commit d3880e3Copy full SHA for d3880e3
tests/ClientTest.php
@@ -31,4 +31,18 @@ public function testCreateClient()
31
$this->assertInstanceOf(Client::class, $client);
32
$this->assertInstanceOf(HttpMethodsClient::class, $client->getHttpClient());
33
}
34
+
35
+ public function testShowRepo()
36
+ {
37
+ $client = new Client();
38
39
+ $response = $client
40
+ ->repositories()
41
+ ->users('atlassian')
42
+ ->show('stash-example-plugin');
43
44
+ $this->assertIsArray($response);
45
+ $this->assertTrue(isset($response['uuid']));
46
+ $this->assertSame('{7dd600e6-0d9c-4801-b967-cb4cc17359ff}', $response['uuid']);
47
+ }
48
0 commit comments