X-Git-Url: https://iankelling.org/git/?p=lnf;a=blobdiff_plain;f=test%2Ftest;fp=test%2Ftest;h=d3a5eac00b8976fc42db94d7c0c2729a46f5cb78;hp=afbb6306a3fed7172407340f09a3a964cd9fbc96;hb=fae0c9143e694a3ed895cee68d1adad9bc359f05;hpb=056e6160cd38fa3bf1622ed4f4c0179f84b53c2f diff --git a/test/test b/test/test index afbb630..d3a5eac 100755 --- a/test/test +++ b/test/test @@ -12,14 +12,14 @@ case1() { touch b lnf -T a b - [[ -L b ]] + [[ -L b ]] } # 2 arguments, test that directory in link location is removed and replaced with a link case2() { mkdir b lnf -T a b - [[ -L b ]] + [[ -L b ]] } # single argument, test that an existing non-empty directory is removed and replaced by a link @@ -27,7 +27,7 @@ case3() { mkdir a touch a/b lnf ../a - [[ -L a ]] + [[ -L a ]] } # 4 arguments, 2 of the link locations already contain files. @@ -37,14 +37,14 @@ case4() { touch a/b touch a/c lnf b c d a - [[ -L a/b && -L a/c && -L a/d ]] + [[ -L a/b && -L a/c && -L a/d ]] } # 2 arguments, test that link is made correctly case5() { mkdir b lnf a b - [[ -L b/a ]] + [[ -L b/a ]] }