blob: 381c032d8fb525e37b951a168f22bee18cd0440c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! ref: composer/tests/Composer/Test/Package/Archiver/ArchivableFilesFinderTest.php
// These set up a temp directory tree (including a git repo) and assert the files the finder
// selects with manual/git/skip excludes; the git-backed fixture setup is not ported.
macro_rules! stub {
($name:ident) => {
#[test]
#[ignore = "needs a temp directory tree and git-backed fixtures to drive ArchivableFilesFinder; not ported"]
fn $name() {
todo!()
}
};
}
stub!(test_manual_excludes);
stub!(test_git_excludes);
stub!(test_skip_excludes);
|