mirror of
https://github.com/imjasonh/testscript-rs
synced 2026-07-08 09:05:34 +00:00
17 lines
223 B
Text
17 lines
223 B
Text
|
|
[!exec:cat] stop
|
||
|
|
|
||
|
|
# hello world
|
||
|
|
exec cat hello.text
|
||
|
|
cp stdout got
|
||
|
|
cmp got hello.text
|
||
|
|
! cmp got different.text
|
||
|
|
|
||
|
|
exists got
|
||
|
|
mv got new
|
||
|
|
! exists got
|
||
|
|
cmp new hello.text
|
||
|
|
|
||
|
|
-- hello.text --
|
||
|
|
hello world
|
||
|
|
-- different.text --
|
||
|
|
goodbye
|