Files
codex/codex-rs/tui/src/test_support.rs
pakrym-oai ac82443d07 Use AbsolutePathBuf in skill loading and codex_home (#17407)
Helps with FS migration later
2026-04-13 10:26:51 -07:00

7 lines
244 B
Rust

pub(crate) use codex_utils_absolute_path::test_support::PathBufExt;
pub(crate) use codex_utils_absolute_path::test_support::test_path_buf;
pub(crate) fn test_path_display(path: &str) -> String {
test_path_buf(path).display().to_string()
}