Skip to content

Commit

Permalink
add tests for skip & fail
Browse files Browse the repository at this point in the history
  • Loading branch information
lzace817 committed Jun 4, 2024
1 parent 68342d3 commit 73dad99
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions skip-fail.list
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
echo 'Hello, World'
echo 'Foo, bar, baz'
echo 'Ur, mom'
25 changes: 25 additions & 0 deletions skip-fail.list.bi
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
:i count 3
:b shell 19
echo 'Hello, World'
:i returncode 0
:b stdout 13
Hello, world

:b stderr 0

:b shell 15
echo 'Foo, bar'
:i returncode 0
:b stdout 9
Foo, bar

:b stderr 0

:b shell 14
echo 'Ur, mom'
:i returncode 0
:b stdout 8
Ur, mom

:b stderr 0

0 comments on commit 73dad99

Please sign in to comment.