Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bendudson/EuraliOS
/ pathbuf_push_relative
Function
pathbuf_push_relative
euralios_std/src/path.rs:1051–1055 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
1049
1050
#[test_case]
1051
fn pathbuf_push_relative() {
1052
let mut path = PathBuf::from(
"/tmp"
);
1053
path.push(
"file.bk"
);
1054
assert_eq!(path, PathBuf::from(
"/tmp/file.bk"
));
1055
}
1056
1057
#[test_case]
1058
fn pathbuf_push_absolute() {
Callers
nothing calls this directly
Calls
1
push
Method · 0.45
Tested by
no test coverage detected