1
0
Fork 0
mirror of https://github.com/imjasonh/testscript-rs synced 2026-07-20 04:48:31 +00:00

Fix symlink implementation and add comprehensive tests and documentation

Co-authored-by: imjasonh <210737+imjasonh@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-09-27 02:47:44 +00:00
parent e356ddf789
commit a030b26bb9
6 changed files with 103 additions and 21 deletions

View file

@ -87,6 +87,6 @@ testscript::run("testdata")
## Built-in Commands
Core: `exec`, `cmp`, `stdout`, `stderr`, `cd`, `wait`, `exists`, `mkdir`, `cp`, `mv`, `rm`, `chmod`, `env`, `cmpenv`, `stdin`, `skip`, `stop`, `kill`, `unquote`, `grep`
Core: `exec`, `cmp`, `stdout`, `stderr`, `cd`, `wait`, `exists`, `mkdir`, `cp`, `mv`, `rm`, `chmod`, `env`, `cmpenv`, `stdin`, `skip`, `stop`, `kill`, `unquote`, `grep`, `symlink`
The command dispatch checks custom commands first, then falls back to built-ins, enabling easy extension.