mirror of
https://github.com/imjasonh/testscript-rs
synced 2026-07-09 17:46:52 +00:00
19 lines
No EOL
349 B
Text
19 lines
No EOL
349 B
Text
# Test basic sample-cli functionality
|
|
|
|
# Test help output
|
|
exec ./sample-cli --help
|
|
stdout ".*sample CLI tool.*"
|
|
|
|
# Test version
|
|
exec ./sample-cli --version
|
|
stdout "sample-cli 1.0"
|
|
|
|
# Test no command shows info
|
|
exec ./sample-cli
|
|
stdout ".*demonstration CLI tool.*"
|
|
stdout ".*--help.*"
|
|
|
|
-- test_file.txt --
|
|
Hello world
|
|
This is line two
|
|
Line three here |