Ejemplo n.º 1
0
 public function testFetchNotExists()
 {
     $file = '123-123-123';
     $path = sprintf('%s/%s.zip', $this->name, $file);
     $this->remoteFilesystem->readStream($path)->willReturn(false);
     $this->localFilesystem->putStream($path, Argument::any())->shouldNotBeCalled();
     $this->storage->fetch($file);
 }