spec\PhpSpec\Locator\PSR0\PSR0LocatorSpec::it_generates_fullSpecPath_from_specPath_plus_namespace PHP Method

it_generates_fullSpecPath_from_specPath_plus_namespace() public method

public it_generates_fullSpecPath_from_specPath_plus_namespace ( Filesystem $fs )
$fs PhpSpec\Util\Filesystem
    function it_generates_fullSpecPath_from_specPath_plus_namespace(Filesystem $fs)
    {
        $this->beConstructedWith($fs, 'C\\N', 'spec', dirname(__DIR__), __DIR__);
        $this->getFullSpecPath()->shouldReturn(__DIR__ . DIRECTORY_SEPARATOR . 'spec' . DIRECTORY_SEPARATOR . 'C' . DIRECTORY_SEPARATOR . 'N' . DIRECTORY_SEPARATOR);
    }
PSR0LocatorSpec