Home
last modified time | relevance | path

Searched refs:assert_diff_paths (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/pathdiff/src/
Dlib.rs158 assert_diff_paths("/foo", "/bar", Some("../foo")); in test_absolute()
159 assert_diff_paths("/foo", "bar", Some("/foo")); in test_absolute()
160 assert_diff_paths("foo", "/bar", None); in test_absolute()
161 assert_diff_paths("foo", "bar", Some("../foo")); in test_absolute()
166 assert_diff_paths(".", ".", Some("")); in test_identity()
167 assert_diff_paths("../foo", "../foo", Some("")); in test_identity()
168 assert_diff_paths("./foo", "./foo", Some("")); in test_identity()
169 assert_diff_paths("/foo", "/foo", Some("")); in test_identity()
170 assert_diff_paths("foo", "foo", Some("")); in test_identity()
172 assert_diff_paths("../foo/bar/baz", "../foo/bar/baz", Some("".into())); in test_identity()
[all …]