Skip to content

Commit

Permalink
Update os test suite
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimyr committed Jun 7, 2020
1 parent 0734eef commit 6f07563
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/os/process/pid_and_ppid.wren
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import "os" for Process

System.print(Process.pid is Num) // expect: true
System.print(Process.pid.isInteger) // expect: true
System.print(Process.pid > 0) // expect: true

System.print(Process.ppid is Num) // expect: true
System.print(Process.ppid.isInteger) // expect: true
System.print(Process.ppid > 0) // expect: true

System.print(Process.pid > Process.ppid) // expect: true

0 comments on commit 6f07563

Please sign in to comment.