MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / test_init_unicode_path

Function test_init_unicode_path

atomic-cli/src/commands/init.rs:1070–1081  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1068
1069 #[test]
1070 fn test_init_unicode_path() {
1071 let temp = TempDir::new().unwrap();
1072 let unicode_path = temp.path().join("项目");
1073 std::fs::create_dir(&unicode_path).unwrap();
1074
1075 let init = Init::at_path(&unicode_path);
1076 let result = init.run();
1077 if let Err(ref e) = result {
1078 eprintln!("Init unicode path failed: {:?}", e);
1079 }
1080 assert!(result.is_ok(), "Init should succeed: {:?}", result.err());
1081 }
1082
1083 #[test]
1084 fn test_init_path_with_spaces() {

Callers

nothing calls this directly

Calls 3

unwrapMethod · 0.45
pathMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected