From bccda06413a2f9d2b26183f8ccb759cd748a9fe5 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 28 Jun 2026 09:26:46 +0800 Subject: test: remove outdated type mapping test --- mingling_pathf/test/src/lib.rs | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'mingling_pathf/test/src') 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); -} -- cgit