()
| 189 | use cap_std_ext::camino::Utf8PathBuf; |
| 190 | |
| 191 | fn tmp_root() -> (tempfile::TempDir, Utf8PathBuf) { |
| 192 | let dir = tempfile::tempdir().unwrap(); |
| 193 | let path = Utf8PathBuf::from_path_buf(dir.path().to_path_buf()).unwrap(); |
| 194 | (dir, path) |
| 195 | } |
| 196 | |
| 197 | #[test] |
| 198 | fn builder_accumulates_binds_and_env() { |