assertEqual(PathType() ~ "hello", PathType("hello")); assertEqual(PathType("") ~ "hello", PathType("hello")); assertEqual(PathType(".") ~ "hello", PathType("hello")); assertEqual(PosixPath("/") ~ "hello", PosixPath("/hello")); assertEqual(WindowsPath("/") ~ "hello", WindowsPath(`\hello`)); assertEqual(PosixPath("/") ~ "hello" ~ "world", PosixPath("/hello/world")); assertEqual(WindowsPath(`C:\`) ~ "hello" ~ "world", WindowsPath(`C:\hello\world`));
Concatenate the path other to this path.