diff --git a/src/rougail/output_console/__init__.py b/src/rougail/output_console/__init__.py index d81d7d5..22eeac8 100644 --- a/src/rougail/output_console/__init__.py +++ b/src/rougail/output_console/__init__.py @@ -76,8 +76,6 @@ class RougailOutputConsole: def mandatory(self): if not self.is_mandatory: return - title = False - options_with_error = [] try: mandatories = self.config.value.mandatory() except (ConfigError, PropertiesOptionError) as err: @@ -86,26 +84,25 @@ class RougailOutputConsole: except ValueError as err: self.errors.append(str(err)) return - for option in mandatories: - try: - option.value.get() - if not title: - self.errors.append( - _("The following variables are mandatory but have no value:") - ) - title = True - self.errors.append(f" - {option.description()}") - except PropertiesOptionError: - options_with_error.append(option) - if not title: - for idx, option in enumerate(options_with_error): - if not idx: - self.errors.append( - _( - "The following variables are inaccessible but are empty and mandatory:" - ) - ) - self.errors.append(f" - {option.description()}") + options_with_error = [] + options = [] + if mandatories: + for option in mandatories: + try: + option.value.get() + options.append(option.description()) + except PropertiesOptionError: + options_with_error.append(option) + if options: + self.errors.append(_("The following variables are mandatory but have no value:")) + self.errors.append(options) + elif options_with_error: + self.errors.append( + _( + "The following variables are inaccessible but are empty and mandatory:" + ) + ) + self.errors.append([option.description() for option in options_with_error]) def exporter(self) -> bool: self.config.property.read_write() @@ -211,7 +208,11 @@ class RougailOutputConsole: guide_style="bold bright_red", ) for error in errors: - tree.add(error) + if isinstance(error, list): + for err in error: + previous_tree.add(err) + else: + previous_tree = tree.add(error) self.out.append(tree) def display_warnings( diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh index 3829f43..f0b56bf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_0version_underscore.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.version (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.version (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh index 08f91f2..62a42c6 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_1empty_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.empty +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.empty diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh index 7817fb5..e1f04a9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (a first variable) -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (a first variable) + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh index ed78658..459e44d 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_4load_subfolder.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (a variable) -┗━━  - rougail.var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (a variable) + ┗━━ rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh index 151ac58..9237517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┗━━  - rougail.var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┗━━ rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_link.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_link.sh index 151ac58..9237517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_link.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6choice_link.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┗━━  - rougail.var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┗━━ rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh index 79e8489..a1cedb2 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6custom.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.custom1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.custom1 (the first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh index 8424fed..fb857b5 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6port.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable1 (a port variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable1 (a port variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret.sh index edd63fb..3b29ec6 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.secret1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.secret1 (the first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret_param.sh index edd63fb..3b29ec6 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret_param.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6secret_param.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.secret1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.secret1 (the first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh index 8cc71bf..c179560 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_6string.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┣━━  - rougail.var2 (the second variable) -┗━━  - rougail.var3 (the third variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┣━━ rougail.var2 (the second variable) + ┗━━ rougail.var3 (the third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help.sh index 151ac58..9237517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┗━━  - rougail.var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┗━━ rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh index 151ac58..9237517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_quote.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┗━━  - rougail.var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┗━━ rougail.var2 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_sup.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_sup.sh index cb99947..19652c4 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_sup.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_7help_sup.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first ) -┗━━  - rougail.var2 (the second ) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first ) + ┗━━ rougail.var2 (the second ) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8calculation_information.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh index 4c911b5..5415b5d 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_8test.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┣━━  - rougail.var3 (the third variable) -┗━━  - rougail.var6 (the sixth variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┣━━ rougail.var3 (the third variable) + ┗━━ rougail.var6 (the sixth variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh index 7070e50..ec6fbaa 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable1 (a first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable1 (a first variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh index b46fd74..714e685 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh index 7817fb5..e1f04a9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (a first variable) -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (a first variable) + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh index 1f54304..a6318bb 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.my_calculated_variable +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.my_calculated_variable diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh index 7817fb5..e1f04a9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (a first variable) -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (a first variable) + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh index 7817fb5..e1f04a9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (a first variable) -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (a first variable) + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh index 54d17ff..fc7c587 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6custom_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.custom1 (a first custom variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.custom1 (a first custom variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh index 140eaea..e996d96 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var1 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var1 (the second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh index 8cc71bf..c179560 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_6string_multi.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.var1 (the first variable) -┣━━  - rougail.var2 (the second variable) -┗━━  - rougail.var3 (the third variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.var1 (the first variable) + ┣━━ rougail.var2 (the second variable) + ┗━━ rougail.var3 (the third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh index 7173406..2cff434 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh index 606bb3b..ed07688 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.variable1 (a first variable) -┗━━  - rougail.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.variable1 (a first variable) + ┗━━ rougail.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_multi.sh index 606bb3b..ed07688 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_multi.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.variable1 (a first variable) -┗━━  - rougail.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.variable1 (a first variable) + ┗━━ rougail.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh index 1603d13..77c2c48 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.condition (a condition) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.condition (a condition) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh index 90a0dae..df006f6 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5validators.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.int (A number) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.int (A number) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh index ea2dd64..871e32e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_0redefine_description.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (Redefined) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (Redefined) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_choice.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh index c6a97ab..fd19fb7 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh index 320d1ff..0d6401e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_help.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.variable (redefine help) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.variable (redefine help) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh index 51af589..48a5517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh index 3f6a34f..df4ebe2 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_5test_redefine.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var3 (a third variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var3 (a third variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh index a2fccc6..adad2e4 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.family1.variable1 (a variable) -┗━━  - rougail.family2.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.family1.variable1 (a variable) + ┗━━ rougail.family2.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh index d270832..d1c5eae 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/16exists_exists.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (Description) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (Description) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh index c1156bf..0d8dd0a 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0family_append.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.family.var1 (The first variable) -┗━━  - rougail.family.var2 (The second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.family.var1 (The first variable) + ┗━━ rougail.family.var2 (The second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh index 4948cda..547cacf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.subfamily.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.subfamily.variable (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh index 9993e4f..46ea5a3 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_order.sh @@ -1,6 +1,6 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.variable (a variable) -┣━━  - rougail.family.variable1 (a first variable) -┣━━  - rougail.family.subfamily.variable (a variable) -┗━━  - rougail.family.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.variable (a variable) + ┣━━ rougail.family.variable1 (a first variable) + ┣━━ rougail.family.subfamily.variable (a variable) + ┗━━ rougail.family.variable2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh index ec50584..4e5855c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_9default_information_parent.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.family.var1 (a first variable) -┗━━  - rougail.family.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.family.var1 (a first variable) + ┗━━ rougail.family.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh index 2a7277a..f6d5a9f 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.var1 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh index d7d05b9..6f9536f 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.subfamily.var1 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.subfamily.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh index c6bd222..91be10b 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.family.sub_family.var1 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.family.sub_family.var1 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh index b46fd74..714e685 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh index e796516..6fc8ce2 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.general.int (a first number) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.general.int (a first number) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh index 84a5139..8f5074c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh index 567e1e1..7817517 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leadership.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leadership.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh index 84a5139..8f5074c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh index 8eeaf64..43d4850 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.general1.leader.leader +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.general1.leader.leader diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh index 3dc2262..7d41ba9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.leader (the leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.leader (the leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh index f436f62..efc7db9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_2leadership_leader_calculation.sh @@ -1,6 +1,6 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.leader.follower1 (a first follower) -┣━━  - rougail.leader.follower2 (a second follower) -┣━━  - rougail.leader.follower1 (a first follower) -┗━━  - rougail.leader.follower2 (a second follower) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.leader.follower1 (a first follower) + ┣━━ rougail.leader.follower2 (a second follower) + ┣━━ rougail.leader.follower1 (a first follower) + ┗━━ rougail.leader.follower2 (a second follower) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh index 319d82b..82e418f 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leadership.leader (The leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leadership.leader (The leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh index 782091e..1b41adf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_8calculation_boolean_return_none.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh index d06e8a2..d843be2 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4disabled_calcultion_follower.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.follower (a follower) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.follower (a follower) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh index 84a5139..8f5074c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh index 84a5139..8f5074c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.leader.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh index 3ec1047..e8f56c9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var (A dynamic variable) -┗━━  - rougail.dynval2.var (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var (A dynamic variable) + ┗━━ rougail.dynval2.var (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh index fe4f8c2..04be9bf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0_type.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.vardyn (A dyn variable) -┗━━  - rougail.dynval2.vardyn (A dyn variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.vardyn (A dyn variable) + ┗━━ rougail.dynval2.vardyn (A dyn variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh index cd2b378..56ee48f 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.vardyn (A dynamic variable) -┗━━  - rougail.dynval2.vardyn (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.vardyn (A dynamic variable) + ┗━━ rougail.dynval2.vardyn (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh index e64e99e..5db5d93 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_jinja_number_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh index 5a4a1de..93dc665 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var -┗━━  - rougail.dynval2.var +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var + ┗━━ rougail.dynval2.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh index 58711a7..795152e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var (a variable inside a dynamic family) -┗━━  - rougail.dynval2.var (a variable inside a dynamic family) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var (a variable inside a dynamic family) + ┗━━ rougail.dynval2.var (a variable inside a dynamic family) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh index d4d6655..7dc2667 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (A suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (A suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh index 3ec1047..e8f56c9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var (A dynamic variable) -┗━━  - rougail.dynval2.var (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var (A dynamic variable) + ┗━━ rougail.dynval2.var (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh index f79adb3..0a5c63c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (a suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (a suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh index d4d6655..7dc2667 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var (A suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var (A suffix variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh index 67771f9..7787291 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.family.var (with a variable) -┣━━  - rougail.dynval2.family.var (with a variable) -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.family.var (with a variable) + ┣━━ rougail.dynval2.family.var (with a variable) + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh index 782091e..1b41adf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh index 782091e..1b41adf 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc2_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a second variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh index 8f6012f..4a1d1bb 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var (A dynamic variable) -┣━━  - rougail.dynval2.var (A dynamic variable) -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var (A dynamic variable) + ┣━━ rougail.dynval2.var (A dynamic variable) + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh index aec5822..65a5923 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.dynval2.var (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.dynval2.var (A dynamic variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh index 5c81452..505a9ce 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh index 5c81452..505a9ce 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.sh index 5c81452..505a9ce 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.sh index 5c81452..505a9ce 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh index 8f6012f..4a1d1bb 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.var (A dynamic variable) -┣━━  - rougail.dynval2.var (A dynamic variable) -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.var (A dynamic variable) + ┣━━ rougail.dynval2.var (A dynamic variable) + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh index 5c81452..505a9ce 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (A variable calculated) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh index e64e99e..5db5d93 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside2_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh index e64e99e..5db5d93 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh index e64e99e..5db5d93 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_jinja_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - rougail.var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ rougail.var2 (a variable) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh index 4753a15..0e7a6bc 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.leadership.leader (a leader) -┗━━  - rougail.dynval2.leadership.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.leadership.leader (a leader) + ┗━━ rougail.dynval2.leadership.leader (a leader) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh index 8a4a97b..76c86e9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - extra.dyn_a.var +┗━━ The following variables are mandatory but have no value: + ┗━━ extra.dyn_a.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh index 8a4a97b..76c86e9 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9extra_dynamic_extra.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - extra.dyn_a.var +┗━━ The following variables are mandatory but have no value: + ┗━━ extra.dyn_a.var diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh index 8628eb0..c2c98aa 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - rougail.dynval1.vardyn (a dynamic variable) -┗━━  - rougail.dynval2.vardyn (a dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ rougail.dynval1.vardyn (a dynamic variable) + ┗━━ rougail.dynval2.vardyn (a dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh index dc6b4b6..8782550 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_0version_underscore.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - version (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ version (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh index a18b89d..f135be9 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_1empty_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - empty +┗━━ The following variables are mandatory but have no value: + ┗━━ empty diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh index 5c8c278..d982c66 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_2default_calculated_variable_transitive.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (a first variable) -┗━━  - var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (a first variable) + ┗━━ var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh index 0e3de2c..7a8f6ea 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_4load_subfolder.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (a variable) -┗━━  - var2 (a variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (a variable) + ┗━━ var2 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh index b963786..f51ad8f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┗━━  - var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┗━━ var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_link.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_link.sh index b963786..f51ad8f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_link.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6choice_link.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┗━━  - var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┗━━ var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh index c4d0232..863b08d 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6custom.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - custom1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ custom1 (the first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh index d275463..98eb3cf 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6port.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable1 (a port variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable1 (a port variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6secret.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6secret.sh index 43c7d08..a7489c7 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6secret.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6secret.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - secret1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ secret1 (the first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6secret_param.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6secret_param.sh index 43c7d08..a7489c7 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6secret_param.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6secret_param.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - secret1 (the first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ secret1 (the first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh index f09859b..8324df6 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_6string.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┣━━  - var2 (the second variable) -┗━━  - var3 (the third variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┣━━ var2 (the second variable) + ┗━━ var3 (the third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7help.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7help.sh index b963786..f51ad8f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_7help.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7help.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┗━━  - var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┗━━ var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh index b963786..f51ad8f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_quote.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┗━━  - var2 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┗━━ var2 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_7help_sup.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_sup.sh index 29dc0f8..a2ea1e9 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_7help_sup.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_7help_sup.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first ) -┗━━  - var2 (the second ) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first ) + ┗━━ var2 (the second ) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_8calculation_information.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh index f731596..da76961 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_8test.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┣━━  - var3 (the third variable) -┗━━  - var6 (the sixth variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┣━━ var3 (the third variable) + ┗━━ var6 (the sixth variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh index b423616..f647b01 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9choice_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable1 (a first variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable1 (a first variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh index e4eb0ac..6ba5191 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh index 5c8c278..d982c66 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_information_other_variable.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (a first variable) -┗━━  - var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (a first variable) + ┗━━ var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh index dee691a..e38a2c6 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_calculation_optional.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - my_calculated_variable +┗━━ The following variables are mandatory but have no value: + ┗━━ my_calculated_variable diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh index 5c8c278..d982c66 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (a first variable) -┗━━  - var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (a first variable) + ┗━━ var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh index 5c8c278..d982c66 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/00_9default_information_other_variable2.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (a first variable) -┗━━  - var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (a first variable) + ┗━━ var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh index 11706ad..0dfa328 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6custom_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - custom1 (a first custom variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ custom1 (a first custom variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh index e844211..39db7b3 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var1 (the second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var1 (the second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh index f09859b..8324df6 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_6string_multi.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (the first variable) -┣━━  - var2 (the second variable) -┗━━  - var3 (the third variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (the first variable) + ┣━━ var2 (the second variable) + ┗━━ var3 (the third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_8calculation_information_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh index 58a51a8..381fd84 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/01_9choice_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable4.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh index d431c9f..6ab936f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - condition (a condition) +┗━━ The following variables are mandatory but have no value: + ┗━━ condition (a condition) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_variable_multi3.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh index 4127a21..61ca7ad 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5validators.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - int (A number) +┗━━ The following variables are mandatory but have no value: + ┗━━ int (A number) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh index 1d3e322..38d707c 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_0redefine_description.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (Redefined) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (Redefined) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_choice.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_default_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh index c354b4d..999b9d8 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - family.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ family.variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh index af01b46..64b3c32 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_help.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - family.variable (redefine help) +┗━━ The following variables are mandatory but have no value: + ┗━━ family.variable (redefine help) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh index a27e0ce..df51651 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5redefine_remove_disable_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh index 44306e6..8bb861d 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_5test_redefine.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var3 (a third variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var3 (a third variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh index 19db440..c22f591 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16_6exists_redefine_family.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - family1.variable1 (a variable) -┗━━  - family2.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ family1.variable1 (a variable) + ┗━━ family2.variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh b/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh index dd5f682..20f53d0 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/16exists_exists.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (Description) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (Description) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh index 83df42d..6859595 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0family_append.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - family.var1 (The first variable) -┗━━  - family.var2 (The second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ family.var1 (The first variable) + ┗━━ family.var2 (The second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh index 7856d91..b348709 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_basic.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - family.subfamily.variable (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ family.subfamily.variable (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh index b8314a2..505a8c1 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_order.sh @@ -1,6 +1,6 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - variable (a variable) -┣━━  - family.variable1 (a first variable) -┣━━  - family.subfamily.variable (a variable) -┗━━  - family.variable2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ variable (a variable) + ┣━━ family.variable1 (a first variable) + ┣━━ family.subfamily.variable (a variable) + ┗━━ family.variable2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh index 79b71e5..2855c5d 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_9default_information_parent.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - family.var1 (a first variable) -┗━━  - family.var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ family.var1 (a first variable) + ┗━━ family.var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_9family_absolute.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_9family_absolute.sh index 2d9ca6a..20c71d9 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_9family_absolute.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_9family_absolute.sh @@ -1,7 +1,7 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - var1 (first variable) -┣━━  - family.var2 (a second variable) -┣━━  - family.subfamily.variable (third variable) -┣━━  - family2.var2 (a variable2) -┗━━  - family2.subfamily.variable (fourth variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ var1 (first variable) + ┣━━ family.var2 (a second variable) + ┣━━ family.subfamily.variable (third variable) + ┣━━ family2.var2 (a variable2) + ┗━━ family2.subfamily.variable (fourth variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh index 9c3e513..9fef596 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_condition_sub_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - family.subfamily.var1 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ family.subfamily.var1 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh index a8a0bcd..852fa77 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_hidden_param_condition_sub_family.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - family.sub_family.var1 (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ family.sub_family.var1 (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh index e4eb0ac..6ba5191 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition_variable.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (a variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (a variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh index b6dda5f..de57e87 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_7validators_variable_optional.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - general.int (a first number) +┗━━ The following variables are mandatory but have no value: + ┗━━ general.int (a first number) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh index 0b59f45..9488104 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh index 443a4f5..04b91ee 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_diff_name.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leadership.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leadership.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh index 0b59f45..9488104 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_follower_default_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh index 07f54f2..0eb2786 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_0leadership_leader_not_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - general1.leader.leader +┗━━ The following variables are mandatory but have no value: + ┗━━ general1.leader.leader diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh index 4065e9c..b487779 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_1leadership_append_follower.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leader.leader (the leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leader.leader (the leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh index fbb683c..aaee48c 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_6leadership_follower_multi.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leadership.leader (The leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leadership.leader (The leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh index 0b59f45..9488104 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_4leadership_mandatory.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh index 0b59f45..9488104 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/44_6leadership_follower_disabled_calculation.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - leader.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┗━━ leader.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh index 318f148..88a989d 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.var (A dynamic variable) -┗━━  - dynval2.var (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.var (A dynamic variable) + ┗━━ dynval2.var (A dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh index 50e87b5..1a22160 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_1_1.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.vardyn (A dynamic variable) -┗━━  - dynval2.vardyn (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.vardyn (A dynamic variable) + ┗━━ dynval2.vardyn (A dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh index 0c11ccb..96bbaf7 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_no_description.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.var -┗━━  - dynval2.var +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.var + ┗━━ dynval2.var diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh index 16ba742..8fb41c7 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_static.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.var (a variable inside a dynamic family) -┗━━  - dynval2.var (a variable inside a dynamic family) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.var (a variable inside a dynamic family) + ┗━━ dynval2.var (a variable inside a dynamic family) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh index 78867c7..2d48ec1 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_test.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (A suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (A suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh index 318f148..88a989d 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_upper_char.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.var (A dynamic variable) -┗━━  - dynval2.var (A dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.var (A dynamic variable) + ┗━━ dynval2.var (A dynamic variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh index 2cb3f2e..069a4fd 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (a suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (a suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh index 78867c7..2d48ec1 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_0family_dynamic_variable_suffix_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var (A suffix variable) +┗━━ The following variables are mandatory but have no value: + ┗━━ var (A suffix variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh index b5f7495..783fc3f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.family.var (with a variable) -┣━━  - dynval2.family.var (with a variable) -┗━━  - var2 (a second variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.family.var (with a variable) + ┣━━ dynval2.family.var (with a variable) + ┗━━ var2 (a second variable) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh index d333fc0..eb759ca 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ var2 (A variable calculated) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh index 65c8544..4117a56 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable.sh @@ -1,5 +1,5 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.var (A dynamic variable) -┣━━  - dynval2.var (A dynamic variable) -┗━━  - var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.var (A dynamic variable) + ┣━━ dynval2.var (A dynamic variable) + ┗━━ var2 (A variable calculated) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh index d333fc0..eb759ca 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_calc_variable_empty.sh @@ -1,3 +1,3 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┗━━  - var2 (A variable calculated) +┗━━ The following variables are mandatory but have no value: + ┗━━ var2 (A variable calculated) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh index 60c3f71..b618a91 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_6family_dynamic_leadership.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.leadership.leader (a leader) -┗━━  - dynval2.leadership.leader (a leader) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.leadership.leader (a leader) + ┗━━ dynval2.leadership.leader (a leader) diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh index 1751767..81b470b 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_9family_dynamic_calc_both.sh @@ -1,4 +1,4 @@ 🛑 ERRORS -┣━━ The following variables are mandatory but have no value: -┣━━  - dynval1.vardyn (a dynamic variable) -┗━━  - dynval2.vardyn (a dynamic variable) +┗━━ The following variables are mandatory but have no value: + ┣━━ dynval1.vardyn (a dynamic variable) + ┗━━ dynval2.vardyn (a dynamic variable)