Completed
Push — master ( ae399a...84a10b )
by Miro
05:50
created

PaginatedKnpLabsRepoFacadeSpec::let()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
namespace spec\DevBoardLib\GithubApiFacade\Repo;
3
4
use DevBoardLib\GithubCore\Repo\GithubRepo;
5
use Github\Client;
6
use PhpSpec\ObjectBehavior;
7
use Prophecy\Argument;
8
9
class PaginatedKnpLabsRepoFacadeSpec extends ObjectBehavior
10
{
11
    public function it_is_initializable()
12
    {
13
        $this->shouldHaveType('DevBoardLib\GithubApiFacade\Repo\PaginatedKnpLabsRepoFacade');
14
        $this->shouldHaveType('DevBoardLib\GithubApiFacade\Repo\RepoFacade');
15
    }
16
17
    public function let(Client $client, GithubRepo $githubRepo)
18
    {
19
        $this->beConstructedWith($client, $githubRepo);
20
    }
21
}
22