Searched refs:rust_module_path (Results 1 – 1 of 1) sorted by relevance
1087 let rust_module_path = RustModulePath::from(""); in rust_module_path_test() localVariable1088 assert_eq!(rust_module_path.to_string(), ""); in rust_module_path_test()1089 assert_eq!(rust_module_path.join("foo"), RustModulePath::from("foo")); in rust_module_path_test()1092 let rust_module_path = RustModulePath::from("foo"); in rust_module_path_test() localVariable1093 assert_eq!(rust_module_path.to_string(), "foo"); in rust_module_path_test()1094 assert_eq!(rust_module_path.join(""), RustModulePath::from("foo")); in rust_module_path_test()1097 let rust_module_path = RustModulePath::from("foo"); in rust_module_path_test() localVariable1098 assert_eq!(rust_module_path.to_string(), "foo"); in rust_module_path_test()1100 rust_module_path.join("bar"), in rust_module_path_test()1105 let rust_module_path = RustModulePath::from("foo::bar"); in rust_module_path_test() localVariable[all …]