add path antiqutations test

This commit is contained in:
Taeer Bar-Yam 2021-08-06 07:06:52 -04:00
parent 8f9429dcab
commit 624162c729

View file

@ -0,0 +1,12 @@
let
foo = "foo";
in
{
simple = ./${foo};
surrounded = ./a-${foo}-b;
absolute = /${foo};
expr = ./${foo + "/bar"};
home = ~/${foo};
notfirst = ./bar/${foo};
slashes = /${foo}/${"bar"};
}