| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 42 | function it_generates(UrlGeneratorInterface $urlGenerator) |
||
| 43 | { |
||
| 44 | $urlGenerator->generate( |
||
| 45 | 'bengor_user_user_homepage', |
||
| 46 | ['token' => 'the-token'], |
||
| 47 | UrlGeneratorInterface::ABSOLUTE_URL |
||
| 48 | )->shouldBeCalled()->willReturn('/'); |
||
| 49 | |||
| 50 | $this->generate('the-token')->shouldReturn('/'); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |