summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/ArchiveTest.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/ArchiveTest.php b/tests/ArchiveTest.php
index 8345ee4..393075d 100644
--- a/tests/ArchiveTest.php
+++ b/tests/ArchiveTest.php
@@ -10,12 +10,20 @@ use Pablotron\ZipStream\StreamWriter;
final class ArchiveTest extends BaseTestCase {
public function testCreate() : void {
- $zip = new ZipStream('test.zip');
+ $zip_path = tempnam('/tmp', 'zipstream-test');
+
+ $zip = new ZipStream($zip_path, [
+ 'output' => new FileWriter(),
+ ]);
$this->assertInstanceOf(
ZipStream::class,
$zip
);
+
+ # close archive and remove temp file
+ $zip->close();
+ unlink($zip_path);
}
public function testFileWriter() {