| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | public function it_will_create_repo_facade($clientFactory, GithubRepo $githubRepo, GithubAccessToken $user, Client $client) |
||
| 24 | { |
||
| 25 | $clientFactory->createTokenAuthenticatedClient($user)->willReturn($client); |
||
| 26 | $this->create($githubRepo, $user) |
||
| 27 | ->shouldReturnAnInstanceOf('DevBoardLib\GithubApiFacade\Repo\PaginatedKnpLabsRepoFacade'); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |