File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767
6868- Improve ` assert_have_been_called_with ` with strict argument matching
6969- Make Windows install clearer in the docs by adding an option for Linux/Mac and another one for Windows.
70- - Add support for empty values and values containing spaces, tabs or newlines in data providers via new ` data_set ` function
71- - Document workaround for global function name collisions when sourcing scripts in tests by copying the original function
70+ - Add data_set function for empty values and values with spaces/ tabs/ newlines
71+ - Document workaround for function name collisions when sourcing scripts
7272- Fix ` temp_dir ` and ` temp_file ` data not being cleaned up when created in ` set_up_before_script `
7373- Fix ` /tmp/bashunit/parallel ` not being cleaned after test run
7474
Original file line number Diff line number Diff line change @@ -67,10 +67,10 @@ function main::cmd_test() {
6767 exit 0
6868 ;;
6969 --show-skipped)
70- BASHUNIT_SHOW_SKIPPED=true
70+ export BASHUNIT_SHOW_SKIPPED=true
7171 ;;
7272 --show-incomplete)
73- BASHUNIT_SHOW_INCOMPLETE=true
73+ export BASHUNIT_SHOW_INCOMPLETE=true
7474 ;;
7575 * )
7676 raw_args+=(" $1 " )
You can’t perform that action at this time.
0 commit comments