@@ -137,7 +137,8 @@ function bashunit::learn::show_progress() {
137137
138138 if [[ $completed -eq $total_lessons ]]; then
139139 echo " "
140- echo " ${_BASHUNIT_COLOR_PASSED}${_BASHUNIT_COLOR_BOLD} 🎉 Congratulations! You've completed all lessons!${_BASHUNIT_COLOR_DEFAULT} "
140+ echo " ${_BASHUNIT_COLOR_PASSED}${_BASHUNIT_COLOR_BOLD} " \
141+ " 🎉 Congratulations! You've completed all lessons!${_BASHUNIT_COLOR_DEFAULT} "
141142 fi
142143
143144 read -p " Press Enter to continue..." -r
@@ -183,7 +184,8 @@ function bashunit::learn::run_lesson_test() {
183184
184185 if " $BASHUNIT_ROOT_DIR /bashunit" " $test_file " --simple; then
185186 echo " "
186- echo " ${_BASHUNIT_COLOR_PASSED}${_BASHUNIT_COLOR_BOLD} ✓ Excellent! Lesson $lesson_number completed!${_BASHUNIT_COLOR_DEFAULT} "
187+ echo " ${_BASHUNIT_COLOR_PASSED}${_BASHUNIT_COLOR_BOLD} " \
188+ " ✓ Excellent! Lesson $lesson_number completed!${_BASHUNIT_COLOR_DEFAULT} "
187189 bashunit::learn::mark_completed " lesson_$lesson_number "
188190 read -p " Press Enter to continue..." -r
189191 return 0
232234
233235 local default_file=" tests/first_test.sh"
234236 echo " "
235- printf " When ready, enter file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
237+ printf " When ready, enter file path %s[%s]%s: " \
238+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
236239 read -r test_file
237240 test_file=" ${test_file:- $default_file } "
238241
305308
306309 local default_file=" tests/assertions_test.sh"
307310 echo " "
308- printf " When ready, enter file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
311+ printf " When ready, enter file path %s[%s]%s: " \
312+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
309313 read -r test_file
310314 test_file=" ${test_file:- $default_file } "
311315
391395
392396 local default_file=" tests/lifecycle_test.sh"
393397 echo " "
394- printf " When ready, enter file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
398+ printf " When ready, enter file path %s[%s]%s: " \
399+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
395400 read -r test_file
396401 test_file=" ${test_file:- $default_file } "
397402
486491
487492 local default_file=" tests/calculator_test.sh"
488493 echo " "
489- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
494+ printf " When ready, enter TEST file path %s[%s]%s: " \
495+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
490496 read -r test_file
491497 test_file=" ${test_file:- $default_file } "
492498
576582
577583 local default_file=" tests/greeter_test.sh"
578584 echo " "
579- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
585+ printf " When ready, enter TEST file path %s[%s]%s: " \
586+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
580587 read -r test_file
581588 test_file=" ${test_file:- $default_file } "
582589
667674
668675 local default_file=" tests/system_info_test.sh"
669676 echo " "
670- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
677+ printf " When ready, enter TEST file path %s[%s]%s: " \
678+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
671679 read -r test_file
672680 test_file=" ${test_file:- $default_file } "
673681
780788
781789 local default_file=" deploy_test.sh"
782790 echo " "
783- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
791+ printf " When ready, enter TEST file path %s[%s]%s: " \
792+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
784793 read -r test_file
785794 test_file=" ${test_file:- $default_file } "
786795
893902
894903 local default_file=" validator_test.sh"
895904 echo " "
896- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
905+ printf " When ready, enter TEST file path %s[%s]%s: " \
906+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
897907 read -r test_file
898908 test_file=" ${test_file:- $default_file } "
899909
@@ -1012,7 +1022,8 @@ EOF
10121022
10131023 local default_file=" checker_test.sh"
10141024 echo " "
1015- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
1025+ printf " When ready, enter TEST file path %s[%s]%s: " \
1026+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
10161027 read -r test_file
10171028 test_file=" ${test_file:- $default_file } "
10181029
@@ -1105,7 +1116,8 @@ EOF
11051116
11061117 local default_file=" backup_test.sh"
11071118 echo " "
1108- printf " When ready, enter TEST file path %s[%s]%s: " " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
1119+ printf " When ready, enter TEST file path %s[%s]%s: " \
1120+ " ${_BASHUNIT_COLOR_FAINT} " " $default_file " " ${_BASHUNIT_COLOR_DEFAULT} "
11091121 read -r test_file
11101122 test_file=" ${test_file:- $default_file } "
11111123
0 commit comments