aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/package/archiver/zip_archiver_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/package/archiver/zip_archiver_test.rs')
-rw-r--r--crates/shirabe/tests/package/archiver/zip_archiver_test.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/shirabe/tests/package/archiver/zip_archiver_test.rs b/crates/shirabe/tests/package/archiver/zip_archiver_test.rs
index b24679b..1c884d8 100644
--- a/crates/shirabe/tests/package/archiver/zip_archiver_test.rs
+++ b/crates/shirabe/tests/package/archiver/zip_archiver_test.rs
@@ -1 +1,21 @@
//! ref: composer/tests/Composer/Test/Package/Archiver/ZipArchiverTest.php
+
+// ZipArchiver::archive builds a zip via ZipArchive, which is todo!() in the php-shim.
+
+#[test]
+#[ignore = "ZipArchiver::archive builds a zip via ZipArchive, which is todo!() in the php-shim"]
+fn test_simple_files() {
+ todo!()
+}
+
+#[test]
+#[ignore = "ZipArchiver::archive builds a zip via ZipArchive, which is todo!() in the php-shim"]
+fn test_gitignore_exclude_negation() {
+ todo!()
+}
+
+#[test]
+#[ignore = "ZipArchiver::archive builds a zip via ZipArchive, which is todo!() in the php-shim"]
+fn test_folder_with_backslashes() {
+ todo!()
+}