Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function it_should_get_tenant_aware_prefixes(TenantAwarePathBuilderInterface $pathBuilder) |
||
33 | { |
||
34 | $pathsNames = ['routes', 'custom']; |
||
35 | $this->setRoutePathsNames($pathsNames); |
||
36 | $pathBuilder->build($pathsNames)->willReturn(['/swp/default/routes', '/swp/default/custom']); |
||
37 | $this->setPathBuilder($pathBuilder); |
||
38 | $this->getPrefixes()->shouldReturn(['/swp/default/routes', '/swp/default/custom']); |
||
39 | } |
||
40 | } |
||
41 |