spec\Newscoop\Services\ThemesServiceSpec::it_gets_theme_path PHP Method

it_gets_theme_path() public method

public it_gets_theme_path ( OutputSettingsIssue $issueOutput, Resource $resource )
$issueOutput Newscoop\Entity\Output\OutputSettingsIssue
$resource Newscoop\Entity\Resource
    public function it_gets_theme_path(OutputSettingsIssue $issueOutput, Resource $resource)
    {
        $resource->getPath()->willReturn('publication_1/theme_1/');
        $issueOutput->getThemePath()->willReturn($resource);
        $this->getThemePath()->shouldReturn('publication_1/theme_1/');
    }