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

Function test_init_path_with_spaces

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

Source from the content-addressed store, hash-verified

1082
1083 #[test]
1084 fn test_init_path_with_spaces() {
1085 let temp = TempDir::new().unwrap();
1086 let path_with_spaces = temp.path().join("my project");
1087 std::fs::create_dir(&path_with_spaces).unwrap();
1088
1089 let init = Init::at_path(&path_with_spaces);
1090 let result = init.run();
1091 if let Err(ref e) = result {
1092 eprintln!("Init path with spaces failed: {:?}", e);
1093 }
1094 assert!(result.is_ok(), "Init should succeed: {:?}", result.err());
1095 }
1096
1097 #[test]
1098 fn test_default_view_name_constant() {

Callers

nothing calls this directly

Calls 3

unwrapMethod · 0.45
pathMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected