blob: 1c884d8b75fd133f830750782e4b71914208fa49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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!()
}
|