diff options
| author | 2026-01-09 08:15:18 -0600 | |
|---|---|---|
| committer | 2026-01-09 08:15:18 -0600 | |
| commit | 84ced0881051123e4cd2aea1de948d75749b6351 (patch) | |
| tree | 0da9a02568761a32f61972231d4310787f8b7920 | |
| parent | Make os/realpath error on windows if path does not exist. (diff) | |
Add test case.issue-1692
| -rw-r--r-- | test/suite-os.janet | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/suite-os.janet b/test/suite-os.janet index edef8ef8..6b615d0f 100644 --- a/test/suite-os.janet +++ b/test/suite-os.janet @@ -174,4 +174,8 @@ :px {:out dn :err dn}))) +# Issue 16922 +(assert-error "os/realpath errors when path does not exist" + (os/realpath "abc123def456")) + (end-suite) |
