File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function test_incomplete_tests_not_displayed_without_flag() {
2323
2424function test_skipped_tests_displayed_with_show_skipped_flag() {
2525 local output
26- output=$( ./bashunit --no-parallel --simple --show-skipped --env " $TEST_ENV_FILE " \
26+ output=$( ./bashunit --env " $TEST_ENV_FILE " -- no-parallel --simple --show-skipped \
2727 " tests/acceptance/bashunit_init_test.sh" )
2828
2929 assert_contains " There was 1 skipped test:" " $output "
@@ -32,7 +32,7 @@ function test_skipped_tests_displayed_with_show_skipped_flag() {
3232
3333function test_incomplete_tests_displayed_with_show_incomplete_flag() {
3434 local output
35- output=$( ./bashunit --no-parallel --simple --show-incomplete --env " $TEST_ENV_FILE " \
35+ output=$( ./bashunit --env " $TEST_ENV_FILE " -- no-parallel --simple --show-incomplete \
3636 " tests/acceptance/bashunit_execution_error_test.sh" )
3737
3838 assert_contains " There was 1 incomplete test:" " $output "
@@ -41,7 +41,7 @@ function test_incomplete_tests_displayed_with_show_incomplete_flag() {
4141
4242function test_both_flags_can_be_used_together() {
4343 local output
44- output=$( ./bashunit --no-parallel --simple --show-skipped --show-incomplete --env " $TEST_ENV_FILE " \
44+ output=$( ./bashunit --env " $TEST_ENV_FILE " -- no-parallel --simple --show-skipped --show-incomplete \
4545 " tests/acceptance/bashunit_fail_test.sh" " tests/acceptance/bashunit_init_test.sh" )
4646
4747 assert_contains " incomplete test" " $output "
Original file line number Diff line number Diff line change @@ -9,3 +9,5 @@ BASHUNIT_SIMPLE_OUTPUT=false
99BASHUNIT_STOP_ON_FAILURE=false
1010BASHUNIT_SHOW_EXECUTION_TIME=false
1111BASHUNIT_VERBOSE=false
12+ BASHUNIT_SHOW_SKIPPED=false
13+ BASHUNIT_SHOW_INCOMPLETE=false
Original file line number Diff line number Diff line change @@ -7,3 +7,5 @@ BASHUNIT_SIMPLE_OUTPUT=false
77BASHUNIT_STOP_ON_FAILURE=false
88BASHUNIT_SHOW_EXECUTION_TIME=false
99BASHUNIT_VERBOSE=false
10+ BASHUNIT_SHOW_SKIPPED=false
11+ BASHUNIT_SHOW_INCOMPLETE=false
Original file line number Diff line number Diff line change @@ -8,3 +8,5 @@ BASHUNIT_SIMPLE_OUTPUT=false
88BASHUNIT_STOP_ON_FAILURE=false
99BASHUNIT_SHOW_EXECUTION_TIME=false
1010BASHUNIT_VERBOSE=false
11+ BASHUNIT_SHOW_SKIPPED=false
12+ BASHUNIT_SHOW_INCOMPLETE=false
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ BASHUNIT_SIMPLE_OUTPUT=true
66BASHUNIT_STOP_ON_FAILURE=false
77BASHUNIT_SHOW_EXECUTION_TIME=false
88BASHUNIT_VERBOSE=false
9+ BASHUNIT_SHOW_SKIPPED=false
10+ BASHUNIT_SHOW_INCOMPLETE=false
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ BASHUNIT_SIMPLE_OUTPUT=false
66BASHUNIT_STOP_ON_FAILURE=true
77BASHUNIT_SHOW_EXECUTION_TIME=false
88BASHUNIT_VERBOSE=false
9+ BASHUNIT_SHOW_SKIPPED=false
10+ BASHUNIT_SHOW_INCOMPLETE=false
Original file line number Diff line number Diff line change @@ -6,3 +6,5 @@ BASHUNIT_SIMPLE_OUTPUT=false
66BASHUNIT_STOP_ON_FAILURE=false
77BASHUNIT_SHOW_EXECUTION_TIME=false
88BASHUNIT_VERBOSE=false
9+ BASHUNIT_SHOW_SKIPPED=false
10+ BASHUNIT_SHOW_INCOMPLETE=false
You can’t perform that action at this time.
0 commit comments