tstaticos.nim 273 B

123456789
  1. import std/[assertions, staticos, os]
  2. block:
  3. static:
  4. doAssert staticDirExists("MISSINGFILE") == false
  5. doAssert staticFileExists("MISSINGDIR") == false
  6. doAssert staticDirExists(currentSourcePath().parentDir)
  7. doAssert staticFileExists(currentSourcePath())