aboutsummaryrefslogtreecommitdiff
path: root/mingling_pathf
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-28 09:26:46 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-28 09:26:46 +0800
commitbccda06413a2f9d2b26183f8ccb759cd748a9fe5 (patch)
tree80b19e3166510dc1a065494b9dfbf95817e3625d /mingling_pathf
parent86bc9000c5687db6434a5d20f409dda8b1d7a43a (diff)
test: remove outdated type mapping test
Diffstat (limited to 'mingling_pathf')
-rw-r--r--mingling_pathf/test/src/lib.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mingling_pathf/test/src/lib.rs b/mingling_pathf/test/src/lib.rs
index 2fcf01a..27ca43d 100644
--- a/mingling_pathf/test/src/lib.rs
+++ b/mingling_pathf/test/src/lib.rs
@@ -258,26 +258,3 @@ fn test_dispatcher_clap_analyze() {
assert!(r.contains(*entry), "Result should contain: {}", entry);
}
}
-
-#[test]
-fn test_type_mapping_file_created() {
- let tmp = std::env::temp_dir().join("mingling_pathf_test_type_mapping");
- let _ = std::fs::remove_dir_all(&tmp);
-
- let crate_dir = std::path::Path::new(env!("CARGO_MANIFEST_DIR"));
-
- analyze_and_build_type_mapping_for(
- crate_dir,
- &tmp,
- )
- .unwrap();
-
- let output_path = tmp.join("type-mapping");
- assert!(
- output_path.exists(),
- "type-mapping file should exist at: {}",
- output_path.display()
- );
-
- let _ = std::fs::remove_dir_all(&tmp);
-}