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.
1 parent 27047b2 commit bcc6e6aCopy full SHA for bcc6e6a
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