spec\Newscoop\Services\AttachmentServiceSpec::it_should_return_path_for_attachment PHP Méthode

it_should_return_path_for_attachment() public méthode

    public function it_should_return_path_for_attachment()
    {
        $this->getStorageLocation(new Attachment())->shouldBe(realpath(__DIR__ . '/../../../newscoop/public/files') . '/0000/0000/000000000');
        $attachment = new Attachment();
        $attachment->setExtension('pdf')->setId(34);
        $this->getStorageLocation($attachment)->shouldBe(realpath(__DIR__ . '/../../../newscoop/public/files') . '/0000/0000/000000034.pdf');
    }