Browse Source

add FileSystem.exists test with trailing slash

Simon Krajewski 11 years ago
parent
commit
cb87fba126
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/unit/unitstd/sys/FileSystem.unit.hx

+ 4 - 0
tests/unit/unitstd/sys/FileSystem.unit.hx

@@ -0,0 +1,4 @@
+#if sys
+sys.FileSystem.exists("unitstd") == true;
+sys.FileSystem.exists("unitstd/") == true;
+#end