aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs')
-rw-r--r--crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs26
1 files changed, 15 insertions, 11 deletions
diff --git a/crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs b/crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs
index dcca80a..5454074 100644
--- a/crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs
+++ b/crates/shirabe/tests/package/archiver/archivable_files_finder_test.rs
@@ -26,16 +26,20 @@ impl Drop for TearDown {
// 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!()
- }
- };
+#[test]
+#[ignore = "needs a temp directory tree and git-backed fixtures to drive ArchivableFilesFinder; not ported"]
+fn test_manual_excludes() {
+ todo!()
+}
+
+#[test]
+#[ignore = "needs a temp directory tree and git-backed fixtures to drive ArchivableFilesFinder; not ported"]
+fn test_git_excludes() {
+ todo!()
}
-stub!(test_manual_excludes);
-stub!(test_git_excludes);
-stub!(test_skip_excludes);
+#[test]
+#[ignore = "needs a temp directory tree and git-backed fixtures to drive ArchivableFilesFinder; not ported"]
+fn test_skip_excludes() {
+ todo!()
+}