Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
38 | function it_renders_dashboard(Request $request, EngineInterface $templatingEngine, Response $response) |
||
39 | { |
||
40 | $templatingEngine->renderResponse('SyliusAdminBundle:Dashboard:index.html.twig')->willReturn($response); |
||
41 | |||
42 | $this->indexAction($request)->shouldReturn($response); |
||
43 | } |
||
44 | } |
||
45 |