@@ -40,7 +40,7 @@ _(by the way, the documentation you are reading is itself tested with bash-unit)
4040 skip tests which name matches the given pattern.
4141 You can specify several patterns by repeating this option
4242 for each pattern.
43- Tests will appear in *bash_unit* output as _pending_ .
43+ Tests will appear in *bash_unit* output as _skipped_ .
4444 (see also _skip_if_)
4545
4646*-r*::
@@ -207,24 +207,24 @@ Overall result: SUCCESS
207207```
208208
209209You can combine the _-p_ option with _-s_ to skip some of the tests. This option accepts a pattern
210- as parameter and mark as pending any test function which matches this pattern.
210+ as parameter and mark as skipped any test function which matches this pattern.
211211
212212```test
213213./bash_unit -p fail_fails -p assert -s no -s status tests/test_core.sh
214214```
215215
216216```output
217217Running tests in tests/test_core.sh
218- Running test_assert_equals_fails_when_not_equal ... PENDING
219- Running test_assert_matches_fails_when_not_matching ... PENDING
220- Running test_assert_no_diff_fails_when_diff ... PENDING
221- Running test_assert_no_diff_succeeds_when_no_diff ... PENDING
222- Running test_assert_not_equals_fails_when_equal ... PENDING
223- Running test_assert_not_equals_succeeds_when_not_equal ... PENDING
224- Running test_assert_not_matches_fails_when_matching ... PENDING
225- Running test_assert_not_matches_succeed_when_not_matching ... PENDING
226- Running test_assert_status_code_fails ... PENDING
227- Running test_assert_status_code_succeeds ... PENDING
218+ Running test_assert_equals_fails_when_not_equal ... SKIPPED
219+ Running test_assert_matches_fails_when_not_matching ... SKIPPED
220+ Running test_assert_no_diff_fails_when_diff ... SKIPPED
221+ Running test_assert_no_diff_succeeds_when_no_diff ... SKIPPED
222+ Running test_assert_not_equals_fails_when_equal ... SKIPPED
223+ Running test_assert_not_equals_succeeds_when_not_equal ... SKIPPED
224+ Running test_assert_not_matches_fails_when_matching ... SKIPPED
225+ Running test_assert_not_matches_succeed_when_not_matching ... SKIPPED
226+ Running test_assert_status_code_fails ... SKIPPED
227+ Running test_assert_status_code_succeeds ... SKIPPED
228228 Running test_assert_equals_succeed_when_equal ... SUCCESS
229229 Running test_assert_fails ... SUCCESS
230230 Running test_assert_fails_fails ... SUCCESS
@@ -642,7 +642,7 @@ test_darwin_proc_does_not_exist() {
642642will output, on a Linux system:
643643
644644```output
645- Running test_darwin_proc_does_not_exist ... PENDING
645+ Running test_darwin_proc_does_not_exist ... SKIPPED
646646 Running test_linux_proc_exists ... SUCCESS
647647```
648648
0 commit comments