Files
wren/test/os/process/cwd.wren
T

9 lines
350 B
JavaScript
Raw Normal View History

2020-06-14 06:12:34 +02:00
import "io" for File, Directory
import "os" for Process
System.print(Process.cwd is String) // expect: true
System.print(!Process.cwd.isEmpty) // expect: true
System.print(Process.cwd.startsWith("/")) // expect: true
System.print(File.realPath(Process.cwd) == Process.cwd) // expect: true
System.print(Directory.exists(Process.cwd)) // expect: true