We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27047b2 + bcc6e6a commit f8074f3Copy full SHA for f8074f3
test/projects.jl
@@ -39,7 +39,8 @@ test_project_names = ["a_text_file",
39
# Test @__DIR__ templating
40
# Use `cleanpath` as there's currently a mixture of / and \ on windows
41
# which does work, but is quite ugly.
42
- cleanpath(p) = replace(p, '\\'=>'/')
+ # Also use realpath to resolve any differences due to symbolic links.
43
+ cleanpath(p) = realpath(replace(p, '\\'=>'/'))
44
@test cleanpath(proj["a_text_file"].storage["path"]) == cleanpath(joinpath(@__DIR__, "data", "file.txt"))
45
end
46
0 commit comments