Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
44 | protected function provideTestRepo() |
||
45 | { |
||
46 | $repo = m::mock('DevBoardLib\GithubCore\Repo\GithubRepo'); |
||
47 | $repoId = m::mock('DevBoardLib\GithubCore\Repo\GithubRepoId'); |
||
48 | |||
49 | $repo->shouldReceive('getId')->andReturn($repoId); |
||
50 | $repoId->shouldReceive('getId')->andReturn(123); |
||
51 | |||
52 | return $repo; |
||
53 | } |
||
54 | |||
63 |