forked from KnpLabs/php-github-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetaTest.php
More file actions
37 lines (32 loc) · 750 Bytes
/
MetaTest.php
File metadata and controls
37 lines (32 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
namespace Github\Tests\Api;
class MetaTest extends TestCase
{
/**
* @test
*/
public function shouldGetInformationService()
{
$expectedArray = [
'hooks' => [
'127.0.0.1/32',
],
'git' => [
'127.0.0.1/32',
],
'verifiable_password_authentication' => true,
];
$api = $this->getApiMock();
$api->expects($this->once())
->method('get')
->will($this->returnValue($expectedArray));
$this->assertEquals($expectedArray, $api->service());
}
/**
* @return string
*/
protected function getApiClass()
{
return \Github\Api\Meta::class;
}
}