diff --git a/src/rougail/output_console/__init__.py b/src/rougail/output_console/__init__.py index 3dcf601..2db1047 100644 --- a/src/rougail/output_console/__init__.py +++ b/src/rougail/output_console/__init__.py @@ -359,7 +359,7 @@ class OutputFamily: self.root.variable_default_enable = True values = [] collect_values = [] - if not option.owner.isdefault() and option.information.get("default_value_makes_sense", True): + if not option.owner.isdefault(): if advanced: self.root.variable_advanced_and_modified_enable = True variable_color = self.root.variable_advanced_and_modified_color @@ -379,7 +379,7 @@ class OutputFamily: }) suboption = option subconfig = self.root.config - if "force_store_value" not in option.property.get(): + if "force_store_value" not in option.property.get() and option.information.get("default_value_makes_sense", True): while True: default_value = suboption.value.default() if leader_index is not None: @@ -387,12 +387,11 @@ class OutputFamily: default_value = default_value[leader_index] else: default_value = None - has_value = not default_value in [None, []] is_root_metaconfig = False if subconfig is None or not subconfig.path() or "." not in subconfig.path(): is_root_metaconfig = True subconfig = self.get_subconfig_with_default_value(suboption) - if not has_value and is_root_metaconfig: + if ((values and default_value is None) or default_value == []) and is_root_metaconfig: break if not values: self.root.value_unmodified_enable = True @@ -420,6 +419,24 @@ class OutputFamily: }) if is_root_metaconfig: break + elif not values: + if leader_index is None and option.index() is not None: + if not option.isfollower() or not option.issubmulti(): + default_value = None + else: + default_value = [] + else: + default_value = None + if not values: + self.root.value_unmodified_enable = True + color = self.root.value_unmodified_color + else: + self.root.value_default_enable = True + color = self.root.value_default_color + values.append({"value": None, + "color": color, + "loaded_from": loaded_from, + }) if self.key_is_description: key_name = option.description() else: @@ -515,7 +532,7 @@ class OutputFamily: value: Any, ) -> str: """Dump variable, means transform bool, ... to yaml string""" - if not self.root.show_secrets and option.type() == "password": + if value is not None and not self.root.show_secrets and option.type() == "password": return "*" * 10 if isinstance(value, str): return value diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.sh index 27e9bc5..78637d2 100644 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.sh @@ -6,6 +6,6 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership โ”ƒ โ”—โ”โ” ๐Ÿ“‚ var1 -โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ—€ loaded from rougail-test (โณ a_value) +โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ”ƒ  โ”—โ”โ” ๐Ÿ““ var2: a_value โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.sh index 6db0d80..b6664dd 100644 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.sh @@ -1,7 +1,8 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) +โ”ฃโ”โ” ๐Ÿ““ var1: value โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.sh index a4d79e3..78f990a 100644 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) +โ”ฃโ”โ” ๐Ÿ““ var1: value โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.sh index c61b1d3..727fa01 100644 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) -โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) +โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.sh index bdec7ff..56c7863 100644 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.sh @@ -1,7 +1,8 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) -โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) +โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh index 8eb68b8..0ce399f 100644 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) -โ”ฃโ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.sh index fef05a8..fb14389 100644 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ false) โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test -โ”ฃโ”โ” ๐Ÿ““ var2: null โ—€ loaded from rougail-test -โ”ฃโ”โ” ๐Ÿ““ var3: null โ—€ loaded from rougail-test -โ”—โ”โ” ๐Ÿ““ var4: null โ—€ loaded from rougail-test +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh index adfee1b..9e54189 100644 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ condition: false โ—€ loaded from rougail-test (โณ false) +โ”ฃโ”โ” ๐Ÿ““ condition: false โ”—โ”โ” ๐Ÿ““ variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh index f3ec757..48adb68 100644 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) +โ”—โ”โ” ๐Ÿ““ condition: true diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_mandatory_secrets/16_5exists_redefine.sh index dd5cdfd..33b8452 100644 --- a/tests/results/test_mandatory_secrets/16_5exists_redefine.sh +++ b/tests/results/test_mandatory_secrets/16_5exists_redefine.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var1: yes โ—€ loaded from rougail-test (โณ yes) +โ”—โ”โ” ๐Ÿ““ var1: yes diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh index 1f1e65d..2c35755 100644 --- a/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh +++ b/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: no โ—€ loaded from rougail-test (โณ no) +โ”—โ”โ” ๐Ÿ““ variable: no diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh index cd12f51..877425c 100644 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.sh index d93e22c..2f6332a 100644 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.sh @@ -1,11 +1,11 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) -โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) +โ”ƒ โ”ฃโ”โ” val1 +โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”ƒ โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_mandatory_secrets/60_0family_hidden.sh index c214b65..8d3d440 100644 --- a/tests/results/test_mandatory_secrets/60_0family_hidden.sh +++ b/tests/results/test_mandatory_secrets/60_0family_hidden.sh @@ -1,6 +1,6 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh index 07ff83c..dee3156 100644 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 @@ -8,6 +8,6 @@ Variables: โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ฃโ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.sh index e3356c1..6772ad8 100644 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.sh @@ -7,6 +7,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ leadership  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ var1 - โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ—€ loaded from rougail-test (โณ a_value) + โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value  โ”ƒ  โ”—โ”โ” ๐Ÿ““ var2: a_value  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.sh index 9042911..f236a13 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ var1: value  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.sh index 583747a..ecdec79 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ var1: value  โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.sh index 52f77ca..170db53 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) - โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ var2: string1  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.sh index 032727a..fedf7ec 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) - โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh index 0d35131..d51fe35 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var1: null  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.sh index 7dbfa99..e88bc98 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.sh @@ -1,11 +1,12 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ var2: null โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ var3: null โ—€ loaded from rougail-test - โ”—โ”โ” ๐Ÿ““ var4: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.sh index d94e79c..693ff3f 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ condition: false โ—€ loaded from rougail-test (โณ false) + โ”ฃโ”โ” ๐Ÿ““ condition: false  โ”—โ”โ” ๐Ÿ““ variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.sh index dea9788..c40f030 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) + โ”—โ”โ” ๐Ÿ““ condition: true diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh index a7412c9..80ce4f4 100644 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ string1) - โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ var1: string1 + โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh index 7cae673..9d2bdec 100644 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh +++ b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var1: yes โ—€ loaded from rougail-test (โณ yes) + โ”—โ”โ” ๐Ÿ““ var1: yes diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh index 4428a9e..6cd9f8d 100644 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: no โ—€ loaded from rougail-test (โณ no) + โ”—โ”โ” ๐Ÿ““ variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh index efd96fe..192f54c 100644 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true)  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh index 2b0e28a..e2cdcfd 100644 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition1: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ condition2: true โ—€ loaded from rougail-test (โณ false)  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.sh index 43bef4c..55509b6 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.sh @@ -1,12 +1,12 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) - โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) + โ”ƒ โ”ฃโ”โ” val1 + โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh index 57d6ef8..f99f161 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh index 896d66e..cf23f85 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh index 49d6a1b..89fab96 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true  โ”—โ”โ” ๐Ÿ““ var2: true โ—€ loaded from rougail-test (โณ true) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh index 67e24c2..8d21b36 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -9,12 +10,12 @@ Variables:  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” string1 โ—€ loaded from rougail-test (โณ a value)   โ”ฃโ”โ” string2 โ—€ loaded from rougail-test (โณ a second value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh index fbcb19e..f12edf5 100644 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -9,6 +9,6 @@ Variables:  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family  โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”ฃโ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”ฃโ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ family -   โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_mandatory_secrets_key/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_mandatory_secrets_key/00_2default_calculated_params_permissive.sh index fc7f853..dd4588f 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/00_2default_calculated_params_permissive.sh @@ -7,6 +7,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ leadership  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a first variable - โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a first variable: a_value โ—€ loaded from rougail-test (โณ a_value) + โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a first variable: a_value  โ”ƒ  โ”—โ”โ” ๐Ÿ““ a first variable: a_value  โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_3.sh index 5040183..022ab71 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_3.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ a first variable: value  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_4.sh index 66b77fb..54f8d6e 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_4.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ a first variable: value  โ”ฃโ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_5.sh index 0886dd8..a52929d 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_5.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ value) - โ”ฃโ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ a second variable: string1  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_6.sh index 4a5196a..3985306 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_1default_calculation_hidden_6.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ value) - โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”—โ”โ” ๐Ÿ““ a second variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional.sh index eeccb7a..239a260 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ a first variable: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ a first variable: null  โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional_default.sh index 9fdfdc2..6a3fab5 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_optional_default.sh @@ -1,11 +1,12 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ a first variable: null โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ a second variable: null โ—€ loaded from rougail-test - โ”—โ”โ” ๐Ÿ““ a forth variable: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a forth variable: null diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable5.sh index 0afde09..4d1192c 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable5.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a condition: false โ—€ loaded from rougail-test (โณ false) + โ”ฃโ”โ” ๐Ÿ““ a condition: false  โ”—โ”โ” ๐Ÿ““ a variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable8.sh index a10e24e..9c4d060 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_5disabled_calculation_variable8.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a condition: true โ—€ loaded from rougail-test (โณ true) + โ”—โ”โ” ๐Ÿ““ a condition: true diff --git a/tests/results/test_namespace_mandatory_secrets_key/04_5hidden_calculation2.sh b/tests/results/test_namespace_mandatory_secrets_key/04_5hidden_calculation2.sh index 408943d..3a29df2 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/04_5hidden_calculation2.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ string1) - โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 + โ”—โ”โ” ๐Ÿ““ a second variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets_key/16_5exists_redefine.sh b/tests/results/test_namespace_mandatory_secrets_key/16_5exists_redefine.sh index 2f0532e..470d2ba 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/16_5exists_redefine.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/16_5exists_redefine.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a first variable: yes โ—€ loaded from rougail-test (โณ yes) + โ”—โ”โ” ๐Ÿ““ a first variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets_key/16_5redefine_hidden.sh b/tests/results/test_namespace_mandatory_secrets_key/16_5redefine_hidden.sh index 25d3f7d..ffcc856 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/16_5redefine_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/16_5redefine_hidden.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: no โ—€ loaded from rougail-test (โณ no) + โ”—โ”โ” ๐Ÿ““ a variable: no diff --git a/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_variable_sub_family.sh index ca311f0..12a2e1f 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_variable_sub_family.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: true โ—€ loaded from rougail-test (โณ true)  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ a subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_with_variable.sh index e1c8779..158a924 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/24_0family_hidden_condition_with_variable.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first conditional variable: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ a second conditional variable: true โ—€ loaded from rougail-test (โณ false)  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_mandatory_secrets_key/60_0family_dynamic_source_hidden.sh index 1f86afd..7ef21f6 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_0family_dynamic_source_hidden.sh @@ -1,12 +1,12 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) - โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) + โ”ƒ โ”ฃโ”โ” val1 + โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ A dynamic family diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_0family_hidden.sh b/tests/results/test_namespace_mandatory_secrets_key/60_0family_hidden.sh index 677148f..eaf977f 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_0family_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_0family_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh index a8613f8..a88f810 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value  โ”—โ”โ” ๐Ÿ““ A variable calculated: string1 โ—€ loaded from rougail-test (โณ a value) diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh index fb1f070..10b38fd 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true  โ”—โ”โ” ๐Ÿ““ A variable calculated: true โ—€ loaded from rougail-test (โณ true) diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh index 66d1e73..c18943b 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -9,12 +10,12 @@ Variables:  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” string1 โ—€ loaded from rougail-test (โณ a value)   โ”ฃโ”โ” string2 โ—€ loaded from rougail-test (โณ a second value) diff --git a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_hidden_suffix.sh index 54038b7..366dff7 100644 --- a/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_mandatory_secrets_key/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -9,6 +9,6 @@ Variables:  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family  โ”ƒ  โ”—โ”โ” ๐Ÿ““ a new variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”ฃโ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”ฃโ”โ” ๐Ÿ““ a variable: null   โ”—โ”โ” ๐Ÿ“‚ a family -   โ”—โ”โ” ๐Ÿ““ a new variable: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write/00_0version_underscore.sh b/tests/results/test_namespace_read_write/00_0version_underscore.sh index a286f06..e555151 100644 --- a/tests/results/test_namespace_read_write/00_0version_underscore.sh +++ b/tests/results/test_namespace_read_write/00_0version_underscore.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ version: + โ”—โ”โ” ๐Ÿ““ version: null diff --git a/tests/results/test_namespace_read_write/00_1empty_variable.sh b/tests/results/test_namespace_read_write/00_1empty_variable.sh index ed54cdf..5fa1b1c 100644 --- a/tests/results/test_namespace_read_write/00_1empty_variable.sh +++ b/tests/results/test_namespace_read_write/00_1empty_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ empty: + โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.sh index 5dd8ef6..b98ee85 100644 --- a/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_read_write/00_2default_calculated_variable_description_multi_line.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”—โ”โ” ๐Ÿ““ var3: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write/00_4load_subfolder.sh b/tests/results/test_namespace_read_write/00_4load_subfolder.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_4load_subfolder.sh +++ b/tests/results/test_namespace_read_write/00_4load_subfolder.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_6choice.sh b/tests/results/test_namespace_read_write/00_6choice.sh index 2a1dae0..b4e4bdd 100644 --- a/tests/results/test_namespace_read_write/00_6choice.sh +++ b/tests/results/test_namespace_read_write/00_6choice.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”ฃโ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”ฃโ”โ” ๐Ÿ““ var4: null  โ”ฃโ”โ” ๐Ÿ““ var5: a  โ”—โ”โ” ๐Ÿ““ var6: 1 diff --git a/tests/results/test_namespace_read_write/00_6choice_link.sh b/tests/results/test_namespace_read_write/00_6choice_link.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_6choice_link.sh +++ b/tests/results/test_namespace_read_write/00_6choice_link.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_6custom.sh b/tests/results/test_namespace_read_write/00_6custom.sh index 89648c0..6f137f5 100644 --- a/tests/results/test_namespace_read_write/00_6custom.sh +++ b/tests/results/test_namespace_read_write/00_6custom.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ custom1: + โ”ฃโ”โ” ๐Ÿ““ custom1: null  โ”—โ”โ” ๐Ÿ““ custom2: value diff --git a/tests/results/test_namespace_read_write/00_6port.sh b/tests/results/test_namespace_read_write/00_6port.sh index b56500a..b6163b3 100644 --- a/tests/results/test_namespace_read_write/00_6port.sh +++ b/tests/results/test_namespace_read_write/00_6port.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ variable1: + โ”ฃโ”โ” ๐Ÿ““ variable1: null  โ”ฃโ”โ” ๐Ÿ““ variable2: 8080  โ”—โ”โ” ๐Ÿ““ variable3: 8080 diff --git a/tests/results/test_namespace_read_write/00_6secret.sh b/tests/results/test_namespace_read_write/00_6secret.sh index 80e8cbc..f3c687c 100644 --- a/tests/results/test_namespace_read_write/00_6secret.sh +++ b/tests/results/test_namespace_read_write/00_6secret.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ secret1: + โ”ฃโ”โ” ๐Ÿ““ secret1: null  โ”—โ”โ” ๐Ÿ““ secret2: value diff --git a/tests/results/test_namespace_read_write/00_6secret_param.sh b/tests/results/test_namespace_read_write/00_6secret_param.sh index 96280e6..596ab31 100644 --- a/tests/results/test_namespace_read_write/00_6secret_param.sh +++ b/tests/results/test_namespace_read_write/00_6secret_param.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ secret1: + โ”ฃโ”โ” ๐Ÿ““ secret1: null  โ”ฃโ”โ” ๐Ÿ““ secret2: value  โ”—โ”โ” ๐Ÿ““ secret3: value diff --git a/tests/results/test_namespace_read_write/00_6string.sh b/tests/results/test_namespace_read_write/00_6string.sh index b711f9e..a012744 100644 --- a/tests/results/test_namespace_read_write/00_6string.sh +++ b/tests/results/test_namespace_read_write/00_6string.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”ฃโ”โ” ๐Ÿ““ var3: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null  โ”ฃโ”โ” ๐Ÿ““ var4: value  โ”ฃโ”โ” ๐Ÿ““ var5: value  โ”ฃโ”โ” ๐Ÿ““ var6: value diff --git a/tests/results/test_namespace_read_write/00_7help.sh b/tests/results/test_namespace_read_write/00_7help.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_7help.sh +++ b/tests/results/test_namespace_read_write/00_7help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_7help_quote.sh b/tests/results/test_namespace_read_write/00_7help_quote.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_7help_quote.sh +++ b/tests/results/test_namespace_read_write/00_7help_quote.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_7help_sup.sh b/tests/results/test_namespace_read_write/00_7help_sup.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_7help_sup.sh +++ b/tests/results/test_namespace_read_write/00_7help_sup.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_8calculation_information.sh b/tests/results/test_namespace_read_write/00_8calculation_information.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/00_8calculation_information.sh +++ b/tests/results/test_namespace_read_write/00_8calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/00_8test.sh b/tests/results/test_namespace_read_write/00_8test.sh index 351a00e..258a5ec 100644 --- a/tests/results/test_namespace_read_write/00_8test.sh +++ b/tests/results/test_namespace_read_write/00_8test.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: + โ”ฃโ”โ” ๐Ÿ““ var1: null  โ”ฃโ”โ” ๐Ÿ““ var2: value - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”ฃโ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”ฃโ”โ” ๐Ÿ““ var4: null  โ”ฃโ”โ” ๐Ÿ““ var5: true  โ”—โ”โ” ๐Ÿ““ var6: diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write/00_9default_calculation_information.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_read_write/00_9default_calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_read_write/00_9default_calculation_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_read_write/00_9default_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write/00_9default_information_other_variable2.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_read_write/00_9default_information_other_variable2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh index 01179f9..8bf5f70 100644 --- a/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write/01_9choice_variable_multi.sh @@ -7,4 +7,4 @@ Variables:  โ”ƒ โ”ฃโ”โ” a  โ”ƒ โ”ฃโ”โ” b  โ”ƒ โ”—โ”โ” c - โ”—โ”โ” ๐Ÿ““ variable2: + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write/02_0tags.sh b/tests/results/test_namespace_read_write/02_0tags.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write/02_0tags.sh +++ b/tests/results/test_namespace_read_write/02_0tags.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.sh index 156cbad..d13f6b4 100644 --- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_4.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ““ var3: value diff --git a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.sh index cec6f69..7aad7fd 100644 --- a/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_read_write/04_1default_calculation_hidden_6.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: value - โ”—โ”โ” ๐Ÿ““ var3: + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation.sh index cdf51b1..c226aaf 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”ฃโ”โ” ๐Ÿ““ variable1: - โ”—โ”โ” ๐Ÿ““ variable2: + โ”ฃโ”โ” ๐Ÿ““ variable1: null + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.sh index dbda819..82ee2d8 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_boolean.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ variable1: + โ”—โ”โ” ๐Ÿ““ variable1: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.sh index a9f213b..17dbd29 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”—โ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh index 3809a5a..3b92206 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh index a02cd9c..1809f9f 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable4.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: yes - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable5.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable6.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.sh index 3809a5a..3b92206 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable7.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable9.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/04_5validators.sh b/tests/results/test_namespace_read_write/04_5validators.sh index 6d7e30f..ac045c5 100644 --- a/tests/results/test_namespace_read_write/04_5validators.sh +++ b/tests/results/test_namespace_read_write/04_5validators.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ int: + โ”—โ”โ” ๐Ÿ““ int: null diff --git a/tests/results/test_namespace_read_write/16_0redefine_description.sh b/tests/results/test_namespace_read_write/16_0redefine_description.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write/16_0redefine_description.sh +++ b/tests/results/test_namespace_read_write/16_0redefine_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write/16_3family_empty_at_ends.sh index 3fea511..b56b0fd 100644 --- a/tests/results/test_namespace_read_write/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_read_write/16_3family_empty_at_ends.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_choice.sh b/tests/results/test_namespace_read_write/16_5redefine_choice.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/16_5redefine_choice.sh +++ b/tests/results/test_namespace_read_write/16_5redefine_choice.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_read_write/16_5redefine_default_calculation.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_family.sh b/tests/results/test_namespace_read_write/16_5redefine_family.sh index b08bbaa..fb3c9db 100644 --- a/tests/results/test_namespace_read_write/16_5redefine_family.sh +++ b/tests/results/test_namespace_read_write/16_5redefine_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_help.sh b/tests/results/test_namespace_read_write/16_5redefine_help.sh index b08bbaa..fb3c9db 100644 --- a/tests/results/test_namespace_read_write/16_5redefine_help.sh +++ b/tests/results/test_namespace_read_write/16_5redefine_help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh index 0961f27..d699292 100644 --- a/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_read_write/16_5redefine_remove_disable_calculation.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/16_5test_redefine.sh b/tests/results/test_namespace_read_write/16_5test_redefine.sh index 29acbdf..a7301ab 100644 --- a/tests/results/test_namespace_read_write/16_5test_redefine.sh +++ b/tests/results/test_namespace_read_write/16_5test_redefine.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: no  โ”ฃโ”โ” ๐Ÿ““ var2: non - โ”—โ”โ” ๐Ÿ““ var3: + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh index efc0d50..d4a68c8 100644 --- a/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_read_write/16_6exists_redefine_family.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ family1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: + โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: null  โ”—โ”โ” ๐Ÿ“‚ family2 -  โ”—โ”โ” ๐Ÿ““ variable2: +  โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write/16exists_exists.sh b/tests/results/test_namespace_read_write/16exists_exists.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write/16exists_exists.sh +++ b/tests/results/test_namespace_read_write/16exists_exists.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/20_0family_append.sh b/tests/results/test_namespace_read_write/20_0family_append.sh index ab86830..d35661e 100644 --- a/tests/results/test_namespace_read_write/20_0family_append.sh +++ b/tests/results/test_namespace_read_write/20_0family_append.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family.sh b/tests/results/test_namespace_read_write/20_0multi_family.sh index 2d4cf61..1bdb522 100644 --- a/tests/results/test_namespace_read_write/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write/20_0multi_family_basic.sh index 2d4cf61..1bdb522 100644 --- a/tests/results/test_namespace_read_write/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_read_write/20_0multi_family_basic.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write/20_0multi_family_expert.sh index ffb9470..9b75259 100644 --- a/tests/results/test_namespace_read_write/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write/20_0multi_family_order.sh b/tests/results/test_namespace_read_write/20_0multi_family_order.sh index ef763aa..66ab802 100644 --- a/tests/results/test_namespace_read_write/20_0multi_family_order.sh +++ b/tests/results/test_namespace_read_write/20_0multi_family_order.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ variable: + โ”ฃโ”โ” ๐Ÿ““ variable: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ variable1: +  โ”ฃโ”โ” ๐Ÿ““ variable1: null   โ”ฃโ”โ” ๐Ÿ“‚ subfamily -  โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: -  โ”—โ”โ” ๐Ÿ““ variable2: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: null +  โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write/20_9default_information_parent.sh b/tests/results/test_namespace_read_write/20_9default_information_parent.sh index ab86830..d35661e 100644 --- a/tests/results/test_namespace_read_write/20_9default_information_parent.sh +++ b/tests/results/test_namespace_read_write/20_9default_information_parent.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh index b30a48d..466a727 100644 --- a/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh index 7efb528..5893684 100644 --- a/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write/24_0family_hidden_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ var1: +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh index 13074e2..b5f32fb 100644 --- a/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write/24_0family_hidden_param_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ sub_family -   โ”—โ”โ” ๐Ÿ““ var1: +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh index 4e9e0d8..9dfdce2 100644 --- a/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh index 8e2c4f8..4ec60ce 100644 --- a/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_read_write/24_0family_mandatory_condition_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh index 6e0a588..171c0c8 100644 --- a/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_read_write/24_7validators_variable_optional.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ general -  โ”ฃโ”โ” ๐Ÿ““ int: +  โ”ฃโ”โ” ๐Ÿ““ int: null   โ”—โ”โ” ๐Ÿ““ int2: 1 diff --git a/tests/results/test_namespace_read_write/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write/40_0leadership_reduce.sh index 0bbbb14..d6a8600 100644 --- a/tests/results/test_namespace_read_write/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_read_write/40_0leadership_reduce.sh @@ -6,10 +6,10 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leadership   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_2 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: value_3 -   โ”—โ”โ” ๐Ÿ““ follower: +   โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh index 333cae2..b25eebb 100644 --- a/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_read_write/40_2leadership_leader_calculation.sh @@ -6,9 +6,9 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leader   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: val1 -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ follower1: -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower2: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ follower1: null +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower2: null   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: val2 -   โ”ฃโ”โ” ๐Ÿ““ follower1: -   โ”—โ”โ” ๐Ÿ““ follower2: +   โ”ฃโ”โ” ๐Ÿ““ follower1: null +   โ”—โ”โ” ๐Ÿ““ follower2: null diff --git a/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh index 4cd10ca..20319b0 100644 --- a/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_read_write/40_8calculation_boolean_return_none.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: yes - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh index b05fad1..d9e7340 100644 --- a/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.sh index caff7df..4c94ea1 100644 --- a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower.sh @@ -6,14 +6,14 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leadership_1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leadership_2   โ”ฃโ”โ” ๐Ÿ“‚ leader -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: null   โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: val   โ”—โ”โ” ๐Ÿ“‚ leader -   โ”ฃโ”โ” ๐Ÿ““ leader: +   โ”ฃโ”โ” ๐Ÿ““ leader: null    โ”—โ”โ” ๐Ÿ““ follower: val diff --git a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh index 065ef0b..5942d12 100644 --- a/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leadership_1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leadership_2   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 diff --git a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh index 337ce7c..429054b 100644 --- a/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_read_write/44_4disabled_calcultion_follower.sh @@ -7,4 +7,4 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leader   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: a -   โ”—โ”โ” ๐Ÿ““ follower: +   โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic.sh b/tests/results/test_namespace_read_write/60_0family_dynamic.sh index af998e0..be5f7eb 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_0_type.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_1_1.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_jinja_integer_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh index af998e0..be5f7eb 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_no_description.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.sh index 88fd57b..908b672 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_source_hidden.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh index 88fd57b..908b672 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_static.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.sh index 945747c..15b4e4c 100644 --- a/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_read_write/60_0family_dynamic_upper_char.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” Val1  โ”ƒ โ”—โ”โ” VAL2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh index 8e5b580..6a06ca5 100644 --- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group.sh @@ -8,8 +8,8 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh index 2e99494..09a3d11 100644 --- a/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ newvar: + โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh index bbeebf0..c49d761 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2.sh @@ -6,7 +6,7 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ var:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2 - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: val  โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh index 6bed4b7..9856aa8 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh index 093feef..f42c1e9 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.sh index 968762f..f5e9671 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ““ var1: diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh index 6bed4b7..9856aa8 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.sh index 5b8f37c..e842fc5 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh index 31c2e87..862cfae 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_variable_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh index 2759703..8867117 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ dynval1 -  โ”ฃโ”โ” ๐Ÿ““ var: +  โ”ฃโ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ family -   โ”—โ”โ” ๐Ÿ““ var: +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.sh index 76136b4..6ed03a2 100644 --- a/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -8,11 +8,11 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ val1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ val1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ val2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ val2   โ”ฃโ”โ” ๐Ÿ“‚ val1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ val2 -   โ”—โ”โ” ๐Ÿ““ var: +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.sh index 42a6821..ec01a69 100644 --- a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.sh index 42a6821..ec01a69 100644 --- a/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_read_write/60_6family_dynamic_suffix_auto_multi2.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write/60_9extra_dynamic.sh index e8b0deb..53de1cf 100644 --- a/tests/results/test_namespace_read_write/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_read_write/60_9extra_dynamic.sh @@ -7,4 +7,4 @@ Variables: โ”ƒ  โ”—โ”โ” a โ”—โ”โ” ๐Ÿ“‚ extra  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh index 3d18f2c..289fd6c 100644 --- a/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_read_write/60_9extra_dynamic_extra.sh @@ -10,4 +10,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ var:  โ”ƒ โ”—โ”โ” a  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh index 779eb47..8d42511 100644 --- a/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_read_write/60_9family_dynamic_calc_both.sh @@ -5,6 +5,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_key/00_0version_underscore.sh b/tests/results/test_namespace_read_write_key/00_0version_underscore.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/00_0version_underscore.sh +++ b/tests/results/test_namespace_read_write_key/00_0version_underscore.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/00_1empty_variable.sh b/tests/results/test_namespace_read_write_key/00_1empty_variable.sh index af7d325..ba7d02c 100644 --- a/tests/results/test_namespace_read_write_key/00_1empty_variable.sh +++ b/tests/results/test_namespace_read_write_key/00_1empty_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ empty: + โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description_multi_line.sh index e6545b0..ec7ca4c 100644 --- a/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_read_write_key/00_2default_calculated_variable_description_multi_line.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”ฃโ”โ” ๐Ÿ““ a second variable: - โ”—โ”โ” ๐Ÿ““ a new variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write_key/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_key/00_4load_subfolder.sh index 4f7dfcc..9304c7b 100644 --- a/tests/results/test_namespace_read_write_key/00_4load_subfolder.sh +++ b/tests/results/test_namespace_read_write_key/00_4load_subfolder.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”ฃโ”โ” ๐Ÿ““ a variable: null + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/00_6choice.sh b/tests/results/test_namespace_read_write_key/00_6choice.sh index 26997fd..1392192 100644 --- a/tests/results/test_namespace_read_write_key/00_6choice.sh +++ b/tests/results/test_namespace_read_write_key/00_6choice.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”ฃโ”โ” ๐Ÿ““ the second variable: - โ”ฃโ”โ” ๐Ÿ““ the third variable: - โ”ฃโ”โ” ๐Ÿ““ the forth variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”ฃโ”โ” ๐Ÿ““ the second variable: null + โ”ฃโ”โ” ๐Ÿ““ the third variable: null + โ”ฃโ”โ” ๐Ÿ““ the forth variable: null  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: a  โ”—โ”โ” ๐Ÿ““ the sixth variable: 1 diff --git a/tests/results/test_namespace_read_write_key/00_6choice_link.sh b/tests/results/test_namespace_read_write_key/00_6choice_link.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_key/00_6choice_link.sh +++ b/tests/results/test_namespace_read_write_key/00_6choice_link.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_6custom.sh b/tests/results/test_namespace_read_write_key/00_6custom.sh index 53d9014..4baedae 100644 --- a/tests/results/test_namespace_read_write_key/00_6custom.sh +++ b/tests/results/test_namespace_read_write_key/00_6custom.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”—โ”โ” ๐Ÿ““ the seconf variable: value diff --git a/tests/results/test_namespace_read_write_key/00_6port.sh b/tests/results/test_namespace_read_write_key/00_6port.sh index fcbe06f..f792f2c 100644 --- a/tests/results/test_namespace_read_write_key/00_6port.sh +++ b/tests/results/test_namespace_read_write_key/00_6port.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a port variable: + โ”ฃโ”โ” ๐Ÿ““ a port variable: null  โ”ฃโ”โ” ๐Ÿ““ a port variable with default value: 8080  โ”—โ”โ” ๐Ÿ““ a port variable with integer default value: 8080 diff --git a/tests/results/test_namespace_read_write_key/00_6secret.sh b/tests/results/test_namespace_read_write_key/00_6secret.sh index 44007a6..926189f 100644 --- a/tests/results/test_namespace_read_write_key/00_6secret.sh +++ b/tests/results/test_namespace_read_write_key/00_6secret.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”—โ”โ” ๐Ÿ““ the second variable: value diff --git a/tests/results/test_namespace_read_write_key/00_6secret_param.sh b/tests/results/test_namespace_read_write_key/00_6secret_param.sh index f4a462c..cfd9f87 100644 --- a/tests/results/test_namespace_read_write_key/00_6secret_param.sh +++ b/tests/results/test_namespace_read_write_key/00_6secret_param.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”ฃโ”โ” ๐Ÿ““ the second variable: value  โ”—โ”โ” ๐Ÿ““ the third variable: value diff --git a/tests/results/test_namespace_read_write_key/00_6string.sh b/tests/results/test_namespace_read_write_key/00_6string.sh index d4c3d53..ab12f59 100644 --- a/tests/results/test_namespace_read_write_key/00_6string.sh +++ b/tests/results/test_namespace_read_write_key/00_6string.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”ฃโ”โ” ๐Ÿ““ the second variable: - โ”ฃโ”โ” ๐Ÿ““ the third variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”ฃโ”โ” ๐Ÿ““ the second variable: null + โ”ฃโ”โ” ๐Ÿ““ the third variable: null  โ”ฃโ”โ” ๐Ÿ““ the forth variable: value  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: value  โ”ฃโ”โ” ๐Ÿ““ the sixth variable: value diff --git a/tests/results/test_namespace_read_write_key/00_7help.sh b/tests/results/test_namespace_read_write_key/00_7help.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_key/00_7help.sh +++ b/tests/results/test_namespace_read_write_key/00_7help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_7help_quote.sh b/tests/results/test_namespace_read_write_key/00_7help_quote.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_key/00_7help_quote.sh +++ b/tests/results/test_namespace_read_write_key/00_7help_quote.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_7help_sup.sh b/tests/results/test_namespace_read_write_key/00_7help_sup.sh index 4b800cc..72cb43e 100644 --- a/tests/results/test_namespace_read_write_key/00_7help_sup.sh +++ b/tests/results/test_namespace_read_write_key/00_7help_sup.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first : - โ”—โ”โ” ๐Ÿ““ the second : + โ”ฃโ”โ” ๐Ÿ““ the first : null + โ”—โ”โ” ๐Ÿ““ the second : null diff --git a/tests/results/test_namespace_read_write_key/00_8calculation_information.sh b/tests/results/test_namespace_read_write_key/00_8calculation_information.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/00_8calculation_information.sh +++ b/tests/results/test_namespace_read_write_key/00_8calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/00_8test.sh b/tests/results/test_namespace_read_write_key/00_8test.sh index a5472f1..855ebc4 100644 --- a/tests/results/test_namespace_read_write_key/00_8test.sh +++ b/tests/results/test_namespace_read_write_key/00_8test.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”ฃโ”โ” ๐Ÿ““ the second variable: value - โ”ฃโ”โ” ๐Ÿ““ the third variable: - โ”ฃโ”โ” ๐Ÿ““ the forth variable: + โ”ฃโ”โ” ๐Ÿ““ the third variable: null + โ”ฃโ”โ” ๐Ÿ““ the forth variable: null  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: true  โ”—โ”โ” ๐Ÿ““ the sixth variable: diff --git a/tests/results/test_namespace_read_write_key/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_key/00_9default_calculation_information.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_read_write_key/00_9default_calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_key/00_9default_calculation_information_other_variable.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_key/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_key/00_9default_calculation_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_key/00_9default_information_other_variable.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_key/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_key/00_9default_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_key/00_9default_information_other_variable2.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_key/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_read_write_key/00_9default_information_other_variable2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_key/01_9choice_variable_multi.sh index 182f267..ac7201f 100644 --- a/tests/results/test_namespace_read_write_key/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write_key/01_9choice_variable_multi.sh @@ -7,4 +7,4 @@ Variables:  โ”ƒ โ”ฃโ”โ” a  โ”ƒ โ”ฃโ”โ” b  โ”ƒ โ”—โ”โ” c - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/02_0tags.sh b/tests/results/test_namespace_read_write_key/02_0tags.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_key/02_0tags.sh +++ b/tests/results/test_namespace_read_write_key/02_0tags.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_4.sh index 78bfbc7..a9423ed 100644 --- a/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_4.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a second variable: null  โ”—โ”โ” ๐Ÿ““ a third variable: value diff --git a/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_6.sh index fccdbbb..d4554f9 100644 --- a/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_read_write_key/04_1default_calculation_hidden_6.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: value - โ”—โ”โ” ๐Ÿ““ a third variable: + โ”—โ”โ” ๐Ÿ““ a third variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation.sh index a2ce3b2..59090d8 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a conditional variable: no - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_boolean.sh index 0b9c9e0..1b25b0c 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_boolean.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a conditional variable: no - โ”—โ”โ” ๐Ÿ““ a first variable: + โ”—โ”โ” ๐Ÿ““ a first variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_optional_default.sh index d2a53a8..843d144 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”ฃโ”โ” ๐Ÿ““ a second variable: - โ”—โ”โ” ๐Ÿ““ a forth variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a forth variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable.sh index cb9f5dd..087386d 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable4.sh index ce97288..d9072b2 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable4.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: yes - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable5.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable5.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable6.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable6.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable7.sh index cb9f5dd..087386d 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable7.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable9.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_read_write_key/04_5disabled_calculation_variable9.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/04_5validators.sh b/tests/results/test_namespace_read_write_key/04_5validators.sh index 4d07cba..ff5e489 100644 --- a/tests/results/test_namespace_read_write_key/04_5validators.sh +++ b/tests/results/test_namespace_read_write_key/04_5validators.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ An integer: + โ”—โ”โ” ๐Ÿ““ An integer: null diff --git a/tests/results/test_namespace_read_write_key/16_0redefine_description.sh b/tests/results/test_namespace_read_write_key/16_0redefine_description.sh index d1a7829..aff2289 100644 --- a/tests/results/test_namespace_read_write_key/16_0redefine_description.sh +++ b/tests/results/test_namespace_read_write_key/16_0redefine_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ Redefined: + โ”—โ”โ” ๐Ÿ““ Redefined: null diff --git a/tests/results/test_namespace_read_write_key/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write_key/16_3family_empty_at_ends.sh index 0f5aab4..de23685 100644 --- a/tests/results/test_namespace_read_write_key/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_read_write_key/16_3family_empty_at_ends.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_key/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_key/16_5redefine_choice.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/16_5redefine_choice.sh +++ b/tests/results/test_namespace_read_write_key/16_5redefine_choice.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_key/16_5redefine_default_calculation.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_key/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_read_write_key/16_5redefine_default_calculation.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/16_5redefine_family.sh b/tests/results/test_namespace_read_write_key/16_5redefine_family.sh index 78ffa1b..42deef2 100644 --- a/tests/results/test_namespace_read_write_key/16_5redefine_family.sh +++ b/tests/results/test_namespace_read_write_key/16_5redefine_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ new description -  โ”—โ”โ” ๐Ÿ““ a variable: +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/16_5redefine_help.sh b/tests/results/test_namespace_read_write_key/16_5redefine_help.sh index c8701ea..d1ef5bd 100644 --- a/tests/results/test_namespace_read_write_key/16_5redefine_help.sh +++ b/tests/results/test_namespace_read_write_key/16_5redefine_help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ redefine help: +  โ”—โ”โ” ๐Ÿ““ redefine help: null diff --git a/tests/results/test_namespace_read_write_key/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_key/16_5redefine_remove_disable_calculation.sh index c1199f7..8e0280a 100644 --- a/tests/results/test_namespace_read_write_key/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_read_write_key/16_5redefine_remove_disable_calculation.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: no - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/16_5test_redefine.sh b/tests/results/test_namespace_read_write_key/16_5test_redefine.sh index 748eeeb..73ad30f 100644 --- a/tests/results/test_namespace_read_write_key/16_5test_redefine.sh +++ b/tests/results/test_namespace_read_write_key/16_5test_redefine.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: no  โ”ฃโ”โ” ๐Ÿ““ a second variable: non - โ”—โ”โ” ๐Ÿ““ a third variable: + โ”—โ”โ” ๐Ÿ““ a third variable: null diff --git a/tests/results/test_namespace_read_write_key/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_key/16_6exists_redefine_family.sh index f003896..8df7928 100644 --- a/tests/results/test_namespace_read_write_key/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_read_write_key/16_6exists_redefine_family.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ new description - โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: null  โ”—โ”โ” ๐Ÿ“‚ a second family -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/16exists_exists.sh b/tests/results/test_namespace_read_write_key/16exists_exists.sh index 8571d03..dd51fa4 100644 --- a/tests/results/test_namespace_read_write_key/16exists_exists.sh +++ b/tests/results/test_namespace_read_write_key/16exists_exists.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ Description: + โ”—โ”โ” ๐Ÿ““ Description: null diff --git a/tests/results/test_namespace_read_write_key/20_0family_append.sh b/tests/results/test_namespace_read_write_key/20_0family_append.sh index 6e3a376..00fdca2 100644 --- a/tests/results/test_namespace_read_write_key/20_0family_append.sh +++ b/tests/results/test_namespace_read_write_key/20_0family_append.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ A family -  โ”ฃโ”โ” ๐Ÿ““ The first variable: -  โ”—โ”โ” ๐Ÿ““ The second variable: +  โ”ฃโ”โ” ๐Ÿ““ The first variable: null +  โ”—โ”โ” ๐Ÿ““ The second variable: null diff --git a/tests/results/test_namespace_read_write_key/20_0multi_family.sh b/tests/results/test_namespace_read_write_key/20_0multi_family.sh index 444b8ef..9b7034e 100644 --- a/tests/results/test_namespace_read_write_key/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write_key/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_key/20_0multi_family_basic.sh index 444b8ef..9b7034e 100644 --- a/tests/results/test_namespace_read_write_key/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_read_write_key/20_0multi_family_basic.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_key/20_0multi_family_expert.sh index cc932e6..0d1097c 100644 --- a/tests/results/test_namespace_read_write_key/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write_key/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_key/20_0multi_family_order.sh index 7ffa799..b85c082 100644 --- a/tests/results/test_namespace_read_write_key/20_0multi_family_order.sh +++ b/tests/results/test_namespace_read_write_key/20_0multi_family_order.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a variable: + โ”ฃโ”โ” ๐Ÿ““ a variable: null  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”ฃโ”โ” ๐Ÿ““ a first variable: +  โ”ฃโ”โ” ๐Ÿ““ a first variable: null   โ”ฃโ”โ” ๐Ÿ“‚ a sub family -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: null +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_key/20_9default_information_parent.sh index 224586a..473fdb9 100644 --- a/tests/results/test_namespace_read_write_key/20_9default_information_parent.sh +++ b/tests/results/test_namespace_read_write_key/20_9default_information_parent.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ a first variable: -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”ฃโ”โ” ๐Ÿ““ a first variable: null +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_key/24_0family_hidden_condition.sh index a37c949..d07ab24 100644 --- a/tests/results/test_namespace_read_write_key/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_read_write_key/24_0family_hidden_condition.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family -  โ”—โ”โ” ๐Ÿ““ a variable: +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_key/24_0family_hidden_condition_sub_family.sh index 9373d0e..85273d3 100644 --- a/tests/results/test_namespace_read_write_key/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_key/24_0family_hidden_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_key/24_0family_hidden_param_condition_sub_family.sh index 667a6d0..21f944d 100644 --- a/tests/results/test_namespace_read_write_key/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_key/24_0family_hidden_param_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ a subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition.sh index c1199f7..8e0280a 100644 --- a/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: no - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition_variable.sh index b5e6a4e..72579b5 100644 --- a/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_read_write_key/24_0family_mandatory_condition_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: true - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_key/24_7validators_variable_optional.sh index a1cf048..6402bcc 100644 --- a/tests/results/test_namespace_read_write_key/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_read_write_key/24_7validators_variable_optional.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”ฃโ”โ” ๐Ÿ““ a first integer: +  โ”ฃโ”โ” ๐Ÿ““ a first integer: null   โ”—โ”โ” ๐Ÿ““ a second integer: 1 diff --git a/tests/results/test_namespace_read_write_key/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write_key/40_0leadership_reduce.sh index 66e9cb1..07887a6 100644 --- a/tests/results/test_namespace_read_write_key/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_read_write_key/40_0leadership_reduce.sh @@ -6,10 +6,10 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value_1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value_2 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null   โ”—โ”โ” ๐Ÿ“‚ a leader    โ”ฃโ”โ” ๐Ÿ““ a leader: value_3 -   โ”—โ”โ” ๐Ÿ““ a follower: +   โ”—โ”โ” ๐Ÿ““ a follower: null diff --git a/tests/results/test_namespace_read_write_key/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_key/40_2leadership_leader_calculation.sh index c31c7f1..97cf942 100644 --- a/tests/results/test_namespace_read_write_key/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_read_write_key/40_2leadership_leader_calculation.sh @@ -6,9 +6,9 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: val1 -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a first follower: -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a second follower: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a first follower: null +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a second follower: null   โ”—โ”โ” ๐Ÿ“‚ a leader    โ”ฃโ”โ” ๐Ÿ““ a leader: val2 -   โ”ฃโ”โ” ๐Ÿ““ a first follower: -   โ”—โ”โ” ๐Ÿ““ a second follower: +   โ”ฃโ”โ” ๐Ÿ““ a first follower: null +   โ”—โ”โ” ๐Ÿ““ a second follower: null diff --git a/tests/results/test_namespace_read_write_key/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_key/40_8calculation_boolean_return_none.sh index 2a4cdc5..11228b5 100644 --- a/tests/results/test_namespace_read_write_key/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_read_write_key/40_8calculation_boolean_return_none.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: yes - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-outside-follower-no-mandatory.sh index 598a37c..8433bcb 100644 --- a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower.sh index 2c268bd..b089b2d 100644 --- a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower.sh @@ -6,14 +6,14 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ a leadership  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ a leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: null  โ”—โ”โ” ๐Ÿ“‚ a second leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: null   โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: val   โ”—โ”โ” ๐Ÿ“‚ a leader -   โ”ฃโ”โ” ๐Ÿ““ a leader: +   โ”ฃโ”โ” ๐Ÿ““ a leader: null    โ”—โ”โ” ๐Ÿ““ a follower: val diff --git a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower_not_same.sh index 7556986..cd35a86 100644 --- a/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_read_write_key/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ a leadership  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ a leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: null  โ”—โ”โ” ๐Ÿ“‚ a second leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 diff --git a/tests/results/test_namespace_read_write_key/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_key/44_4disabled_calcultion_follower.sh index 05fd907..399dfcf 100644 --- a/tests/results/test_namespace_read_write_key/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_read_write_key/44_4disabled_calcultion_follower.sh @@ -7,4 +7,4 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”—โ”โ” ๐Ÿ“‚ aleader    โ”ฃโ”โ” ๐Ÿ““ aleader: a -   โ”—โ”โ” ๐Ÿ““ a follower: +   โ”—โ”โ” ๐Ÿ““ a follower: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic.sh index 24a2195..89d26d6 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0.sh index ab9d456..e881856 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ Dynamic variable: +  โ”—โ”โ” ๐Ÿ““ Dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0_type.sh index 23513a2..7eab5de 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_0_type.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dyn variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dyn variable: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ A dyn variable: +  โ”—โ”โ” ๐Ÿ““ A dyn variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_1.sh index 24a2195..89d26d6 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_1_1.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_jinja_integer_empty.sh index b11243b..6833c03 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_jinja_integer_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_no_description.sh index 7012dff..bf914b4 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_no_description.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_source_hidden.sh index 9487a5b..140148d 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_source_hidden.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_static.sh index e9ace5a..7ef3e3d 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_static.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: null  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: +  โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: null diff --git a/tests/results/test_namespace_read_write_key/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_key/60_0family_dynamic_upper_char.sh index 1ccb0ee..9ac549b 100644 --- a/tests/results/test_namespace_read_write_key/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_read_write_key/60_0family_dynamic_upper_char.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” Val1  โ”ƒ โ”—โ”โ” VAL2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group.sh index fb73ae7..1626a02 100644 --- a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group.sh @@ -8,8 +8,8 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: null  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 557a281..261554a 100644 --- a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a identifier variable: - โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: + โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: null diff --git a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f9e2b14..67548fa 100644 --- a/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_key/60_2family_dynamic_outside_calc_empty.sh index 85622e1..b347fd5 100644 --- a/tests/results/test_namespace_read_write_key/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffx variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2.sh index 1c7356f..6dbf0aa 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2.sh @@ -6,7 +6,7 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ A suffix variable:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2 - โ”ฃโ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a second variable: null  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: val  โ”—โ”โ” ๐Ÿ“‚ A dynamic family diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2_empty.sh index ea139a7..4084332 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix.sh index ffaa3c6..ba9b933 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled.sh index fc362a4..bec6a25 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled2.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_2.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_3.sh index 90ed98f..ca4a47d 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ A variable calculated: + โ”ฃโ”โ” ๐Ÿ““ A variable calculated: null  โ”—โ”โ” ๐Ÿ““ A suffix variable: diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable.sh index ffaa3c6..ba9b933 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled.sh index fe3be8f..70afe2c 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val1 - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ โ”—โ”โ” ๐Ÿ““ A new variable: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: null + โ”ƒ โ”—โ”โ” ๐Ÿ““ A new variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic famify for val2 -  โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: -  โ”—โ”โ” ๐Ÿ““ A new variable: +  โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: null +  โ”—โ”โ” ๐Ÿ““ A new variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled_outside.sh index d7a6ff3..259f852 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A new variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A new variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_empty.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_calc_variable_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_hidden_suffix.sh index 03daec9..d85e744 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”ฃโ”โ” ๐Ÿ““ a variable: +  โ”ฃโ”โ” ๐Ÿ““ a variable: null   โ”—โ”โ” ๐Ÿ“‚ a family -   โ”—โ”โ” ๐Ÿ““ a new variable: +   โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write_key/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_key/60_5family_dynamic_variable_outside_suffix_empty.sh index 8bfa77a..f7f7d03 100644 --- a/tests/results/test_namespace_read_write_key/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_key/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ asuffix variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_key/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write_key/60_6family_dynamic_sub_dynamic_1_0_2.sh index 8b4417a..56099e1 100644 --- a/tests/results/test_namespace_read_write_key/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_read_write_key/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -8,11 +8,11 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family   โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family -  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null   โ”—โ”โ” ๐Ÿ“‚ A dynamic family -   โ”—โ”โ” ๐Ÿ““ A dynamic variable: +   โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi.sh index 39cce63..3950d0b 100644 --- a/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi2.sh index 39cce63..3950d0b 100644 --- a/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_read_write_key/60_6family_dynamic_suffix_auto_multi2.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_key/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_key/60_9extra_dynamic.sh index 9061fba..cb8c858 100644 --- a/tests/results/test_namespace_read_write_key/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_read_write_key/60_9extra_dynamic.sh @@ -7,4 +7,4 @@ Variables: โ”ƒ  โ”—โ”โ” a โ”—โ”โ” ๐Ÿ“‚ extra  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_key/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_key/60_9extra_dynamic_extra.sh index 080b217..1fbeaa2 100644 --- a/tests/results/test_namespace_read_write_key/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_read_write_key/60_9extra_dynamic_extra.sh @@ -10,4 +10,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ a variable:  โ”ƒ โ”—โ”โ” a  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_key/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_key/60_9family_dynamic_calc_both.sh index a30dc55..6815e25 100644 --- a/tests/results/test_namespace_read_write_key/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_read_write_key/60_9family_dynamic_calc_both.sh @@ -5,6 +5,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: val2  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”—โ”โ” ๐Ÿ““ a dynamic variable: +  โ”—โ”โ” ๐Ÿ““ a dynamic variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh index a9f213b..17dbd29 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”—โ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh index 2d4cf61..1bdb522 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh index ffb9470..9b75259 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh index 4e9e0d8..9dfdce2 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh index b05fad1..d9e7340 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh index 2e99494..09a3d11 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ newvar: + โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh index 2759703..8867117 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ dynval1 -  โ”ฃโ”โ” ๐Ÿ““ var: +  โ”ฃโ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ family -   โ”—โ”โ” ๐Ÿ““ var: +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/04_5disabled_calculation_optional_default.sh index d2a53a8..843d144 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”ฃโ”โ” ๐Ÿ““ a second variable: - โ”—โ”โ” ๐Ÿ““ a forth variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a forth variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family.sh index 444b8ef..9b7034e 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family_expert.sh index cc932e6..0d1097c 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/24_0family_mandatory_condition.sh index c1199f7..8e0280a 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: no - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/40_9leadership-calculation-outside-follower-no-mandatory.sh index 598a37c..8433bcb 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_0family_dynamic_1_0.sh index ab9d456..e881856 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ Dynamic variable: +  โ”—โ”โ” ๐Ÿ““ Dynamic variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 557a281..261554a 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a identifier variable: - โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: + โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f9e2b14..67548fa 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_outside_calc_empty.sh index 85622e1..b347fd5 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffx variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_hidden_suffix.sh index 03daec9..d85e744 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”ฃโ”โ” ๐Ÿ““ a variable: +  โ”ฃโ”โ” ๐Ÿ““ a variable: null   โ”—โ”โ” ๐Ÿ“‚ a family -   โ”—โ”โ” ๐Ÿ““ a new variable: +   โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_variable_outside_suffix_empty.sh index 8bfa77a..f7f7d03 100644 --- a/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_mandatory_secrets_errors_key/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ asuffix variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh index a286f06..e555151 100644 --- a/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh +++ b/tests/results/test_namespace_read_write_secrets/00_0version_underscore.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ version: + โ”—โ”โ” ๐Ÿ““ version: null diff --git a/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh index ed54cdf..5fa1b1c 100644 --- a/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/00_1empty_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ empty: + โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh index 5dd8ef6..b98ee85 100644 --- a/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”—โ”โ” ๐Ÿ““ var3: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh +++ b/tests/results/test_namespace_read_write_secrets/00_4load_subfolder.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice.sh b/tests/results/test_namespace_read_write_secrets/00_6choice.sh index 2a1dae0..b4e4bdd 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6choice.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6choice.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”ฃโ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”ฃโ”โ” ๐Ÿ““ var4: null  โ”ฃโ”โ” ๐Ÿ““ var5: a  โ”—โ”โ” ๐Ÿ““ var6: 1 diff --git a/tests/results/test_namespace_read_write_secrets/00_6choice_link.sh b/tests/results/test_namespace_read_write_secrets/00_6choice_link.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6choice_link.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6choice_link.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_6custom.sh b/tests/results/test_namespace_read_write_secrets/00_6custom.sh index 89648c0..6f137f5 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6custom.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6custom.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ custom1: + โ”ฃโ”โ” ๐Ÿ““ custom1: null  โ”—โ”โ” ๐Ÿ““ custom2: value diff --git a/tests/results/test_namespace_read_write_secrets/00_6port.sh b/tests/results/test_namespace_read_write_secrets/00_6port.sh index b56500a..b6163b3 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6port.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6port.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ variable1: + โ”ฃโ”โ” ๐Ÿ““ variable1: null  โ”ฃโ”โ” ๐Ÿ““ variable2: 8080  โ”—โ”โ” ๐Ÿ““ variable3: 8080 diff --git a/tests/results/test_namespace_read_write_secrets/00_6secret.sh b/tests/results/test_namespace_read_write_secrets/00_6secret.sh index 510b8e7..a9ccef5 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6secret.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6secret.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ secret1: + โ”ฃโ”โ” ๐Ÿ““ secret1: null  โ”—โ”โ” ๐Ÿ““ secret2: ********** diff --git a/tests/results/test_namespace_read_write_secrets/00_6secret_param.sh b/tests/results/test_namespace_read_write_secrets/00_6secret_param.sh index af93115..c25af29 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6secret_param.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6secret_param.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ secret1: + โ”ฃโ”โ” ๐Ÿ““ secret1: null  โ”ฃโ”โ” ๐Ÿ““ secret2: **********  โ”—โ”โ” ๐Ÿ““ secret3: ********** diff --git a/tests/results/test_namespace_read_write_secrets/00_6string.sh b/tests/results/test_namespace_read_write_secrets/00_6string.sh index b711f9e..a012744 100644 --- a/tests/results/test_namespace_read_write_secrets/00_6string.sh +++ b/tests/results/test_namespace_read_write_secrets/00_6string.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var2: - โ”ฃโ”โ” ๐Ÿ““ var3: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null  โ”ฃโ”โ” ๐Ÿ““ var4: value  โ”ฃโ”โ” ๐Ÿ““ var5: value  โ”ฃโ”โ” ๐Ÿ““ var6: value diff --git a/tests/results/test_namespace_read_write_secrets/00_7help.sh b/tests/results/test_namespace_read_write_secrets/00_7help.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_7help.sh +++ b/tests/results/test_namespace_read_write_secrets/00_7help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh b/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh +++ b/tests/results/test_namespace_read_write_secrets/00_7help_quote.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_7help_sup.sh b/tests/results/test_namespace_read_write_secrets/00_7help_sup.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_7help_sup.sh +++ b/tests/results/test_namespace_read_write_secrets/00_7help_sup.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh +++ b/tests/results/test_namespace_read_write_secrets/00_8calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/00_8test.sh b/tests/results/test_namespace_read_write_secrets/00_8test.sh index 351a00e..258a5ec 100644 --- a/tests/results/test_namespace_read_write_secrets/00_8test.sh +++ b/tests/results/test_namespace_read_write_secrets/00_8test.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: + โ”ฃโ”โ” ๐Ÿ““ var1: null  โ”ฃโ”โ” ๐Ÿ““ var2: value - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”ฃโ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”ฃโ”โ” ๐Ÿ““ var4: null  โ”ฃโ”โ” ๐Ÿ““ var5: true  โ”—โ”โ” ๐Ÿ““ var6: diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/00_9default_calculation_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_read_write_secrets/00_9default_information_other_variable2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh index 01179f9..8bf5f70 100644 --- a/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write_secrets/01_9choice_variable_multi.sh @@ -7,4 +7,4 @@ Variables:  โ”ƒ โ”ฃโ”โ” a  โ”ƒ โ”ฃโ”โ” b  โ”ƒ โ”—โ”โ” c - โ”—โ”โ” ๐Ÿ““ variable2: + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/02_0tags.sh b/tests/results/test_namespace_read_write_secrets/02_0tags.sh index d72601b..fe8f821 100644 --- a/tests/results/test_namespace_read_write_secrets/02_0tags.sh +++ b/tests/results/test_namespace_read_write_secrets/02_0tags.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.sh index 156cbad..d13f6b4 100644 --- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_4.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ““ var3: value diff --git a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.sh index cec6f69..7aad7fd 100644 --- a/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_read_write_secrets/04_1default_calculation_hidden_6.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: value - โ”—โ”โ” ๐Ÿ““ var3: + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh index cdf51b1..c226aaf 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”ฃโ”โ” ๐Ÿ““ variable1: - โ”—โ”โ” ๐Ÿ““ variable2: + โ”ฃโ”โ” ๐Ÿ““ variable1: null + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.sh index dbda819..82ee2d8 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_boolean.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ variable1: + โ”—โ”โ” ๐Ÿ““ variable1: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.sh index a9f213b..17dbd29 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ฃโ”โ” ๐Ÿ““ var3: - โ”—โ”โ” ๐Ÿ““ var4: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh index 3809a5a..3b92206 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh index a02cd9c..1809f9f 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable4.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: yes - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable5.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable6.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.sh index 3809a5a..3b92206 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable7.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: false - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable9.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/04_5validators.sh b/tests/results/test_namespace_read_write_secrets/04_5validators.sh index 6d7e30f..ac045c5 100644 --- a/tests/results/test_namespace_read_write_secrets/04_5validators.sh +++ b/tests/results/test_namespace_read_write_secrets/04_5validators.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ int: + โ”—โ”โ” ๐Ÿ““ int: null diff --git a/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh +++ b/tests/results/test_namespace_read_write_secrets/16_0redefine_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.sh index 3fea511..b56b0fd 100644 --- a/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_read_write_secrets/16_3family_empty_at_ends.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_choice.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh index 7e18085..b11f79e 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_default_calculation.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh index b08bbaa..fb3c9db 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh index b08bbaa..fb3c9db 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh index 0961f27..d699292 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5redefine_remove_disable_calculation.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh index 29acbdf..a7301ab 100644 --- a/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh +++ b/tests/results/test_namespace_read_write_secrets/16_5test_redefine.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: no  โ”ฃโ”โ” ๐Ÿ““ var2: non - โ”—โ”โ” ๐Ÿ““ var3: + โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh index efc0d50..d4a68c8 100644 --- a/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_read_write_secrets/16_6exists_redefine_family.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ family1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: + โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: null  โ”—โ”โ” ๐Ÿ“‚ family2 -  โ”—โ”โ” ๐Ÿ““ variable2: +  โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/16exists_exists.sh b/tests/results/test_namespace_read_write_secrets/16exists_exists.sh index 9503430..7aee119 100644 --- a/tests/results/test_namespace_read_write_secrets/16exists_exists.sh +++ b/tests/results/test_namespace_read_write_secrets/16exists_exists.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0family_append.sh b/tests/results/test_namespace_read_write_secrets/20_0family_append.sh index ab86830..d35661e 100644 --- a/tests/results/test_namespace_read_write_secrets/20_0family_append.sh +++ b/tests/results/test_namespace_read_write_secrets/20_0family_append.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh index 2d4cf61..1bdb522 100644 --- a/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh index 2d4cf61..1bdb522 100644 --- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_basic.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh index ffb9470..9b75259 100644 --- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ variable: +   โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh index ef763aa..66ab802 100644 --- a/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh +++ b/tests/results/test_namespace_read_write_secrets/20_0multi_family_order.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ variable: + โ”ฃโ”โ” ๐Ÿ““ variable: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ variable1: +  โ”ฃโ”โ” ๐Ÿ““ variable1: null   โ”ฃโ”โ” ๐Ÿ“‚ subfamily -  โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: -  โ”—โ”โ” ๐Ÿ““ variable2: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: null +  โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh index ab86830..d35661e 100644 --- a/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh +++ b/tests/results/test_namespace_read_write_secrets/20_9default_information_parent.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh index b30a48d..466a727 100644 --- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh index 7efb528..5893684 100644 --- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ var1: +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh index 13074e2..b5f32fb 100644 --- a/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ condition: no  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ sub_family -   โ”—โ”โ” ๐Ÿ““ var1: +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh index 4e9e0d8..9dfdce2 100644 --- a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: no - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh index 8e2c4f8..4ec60ce 100644 --- a/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/24_0family_mandatory_condition_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh index 6e0a588..171c0c8 100644 --- a/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_read_write_secrets/24_7validators_variable_optional.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ general -  โ”ฃโ”โ” ๐Ÿ““ int: +  โ”ฃโ”โ” ๐Ÿ““ int: null   โ”—โ”โ” ๐Ÿ““ int2: 1 diff --git a/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.sh index 0bbbb14..d6a8600 100644 --- a/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_read_write_secrets/40_0leadership_reduce.sh @@ -6,10 +6,10 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leadership   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_2 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: value_3 -   โ”—โ”โ” ๐Ÿ““ follower: +   โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh index 333cae2..b25eebb 100644 --- a/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets/40_2leadership_leader_calculation.sh @@ -6,9 +6,9 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leader   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: val1 -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ follower1: -  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower2: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ follower1: null +  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower2: null   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: val2 -   โ”ฃโ”โ” ๐Ÿ““ follower1: -   โ”—โ”โ” ๐Ÿ““ follower2: +   โ”ฃโ”โ” ๐Ÿ““ follower1: null +   โ”—โ”โ” ๐Ÿ““ follower2: null diff --git a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh index 4cd10ca..20319b0 100644 --- a/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_read_write_secrets/40_8calculation_boolean_return_none.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: yes - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh index b05fad1..d9e7340 100644 --- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh index caff7df..4c94ea1 100644 --- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh @@ -6,14 +6,14 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leadership_1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leadership_2   โ”ฃโ”โ” ๐Ÿ“‚ leader -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: null   โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: val   โ”—โ”โ” ๐Ÿ“‚ leader -   โ”ฃโ”โ” ๐Ÿ““ leader: +   โ”ฃโ”โ” ๐Ÿ““ leader: null    โ”—โ”โ” ๐Ÿ““ follower: val diff --git a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh index 065ef0b..5942d12 100644 --- a/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leadership_1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leadership_2   โ”ฃโ”โ” ๐Ÿ“‚ leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 diff --git a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh index 337ce7c..429054b 100644 --- a/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_read_write_secrets/44_4disabled_calcultion_follower.sh @@ -7,4 +7,4 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ leader   โ”—โ”โ” ๐Ÿ“‚ leader    โ”ฃโ”โ” ๐Ÿ““ leader: a -   โ”—โ”โ” ๐Ÿ““ follower: +   โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh index af998e0..be5f7eb 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_0_type.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh index 99aebde..d9cbf29 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_1_1.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_jinja_integer_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh index af998e0..be5f7eb 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_no_description.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.sh index 88fd57b..908b672 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_source_hidden.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh index 88fd57b..908b672 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_static.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.sh index 945747c..15b4e4c 100644 --- a/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_read_write_secrets/60_0family_dynamic_upper_char.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” Val1  โ”ƒ โ”—โ”โ” VAL2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh index 8e5b580..6a06ca5 100644 --- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -8,8 +8,8 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh index 2e99494..09a3d11 100644 --- a/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ newvar: + โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh index bbeebf0..c49d761 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2.sh @@ -6,7 +6,7 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ var:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2 - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: val  โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh index 6bed4b7..9856aa8 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh index 093feef..f42c1e9 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.sh index 968762f..f5e9671 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ““ var1: diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh index 6bed4b7..9856aa8 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh index 5b8f37c..e842fc5 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: - โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”ฃโ”โ” ๐Ÿ““ var1: -  โ”—โ”โ” ๐Ÿ““ var2: +  โ”ฃโ”โ” ๐Ÿ““ var1: null +  โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh index 31c2e87..862cfae 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh index d72601b..3f79750 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh index 2759703..8867117 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ dynval1 -  โ”ฃโ”โ” ๐Ÿ““ var: +  โ”ฃโ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ family -   โ”—โ”โ” ๐Ÿ““ var: +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh index 6d7ebb9..6c2092e 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”—โ”โ” ๐Ÿ““ var2: + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh index 76136b4..6ed03a2 100644 --- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -8,11 +8,11 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ val1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ val1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ val2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ val2   โ”ฃโ”โ” ๐Ÿ“‚ val1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ val2 -   โ”—โ”โ” ๐Ÿ““ var: +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.sh index 42a6821..ec01a69 100644 --- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.sh index 42a6821..ec01a69 100644 --- a/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_read_write_secrets/60_6family_dynamic_suffix_auto_multi2.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh index e8b0deb..53de1cf 100644 --- a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic.sh @@ -7,4 +7,4 @@ Variables: โ”ƒ  โ”—โ”โ” a โ”—โ”โ” ๐Ÿ“‚ extra  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh index 3d18f2c..289fd6c 100644 --- a/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_read_write_secrets/60_9extra_dynamic_extra.sh @@ -10,4 +10,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ var:  โ”ƒ โ”—โ”โ” a  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh index 779eb47..8d42511 100644 --- a/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_read_write_secrets/60_9family_dynamic_calc_both.sh @@ -5,6 +5,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: + โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ vardyn: +  โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_0version_underscore.sh b/tests/results/test_namespace_read_write_secrets_key/00_0version_underscore.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_0version_underscore.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_0version_underscore.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_1empty_variable.sh b/tests/results/test_namespace_read_write_secrets_key/00_1empty_variable.sh index af7d325..ba7d02c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_1empty_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_1empty_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ empty: + โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description_multi_line.sh index e6545b0..ec7ca4c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_2default_calculated_variable_description_multi_line.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”ฃโ”โ” ๐Ÿ““ a second variable: - โ”—โ”โ” ๐Ÿ““ a new variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_secrets_key/00_4load_subfolder.sh index 4f7dfcc..9304c7b 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_4load_subfolder.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_4load_subfolder.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”ฃโ”โ” ๐Ÿ““ a variable: null + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6choice.sh b/tests/results/test_namespace_read_write_secrets_key/00_6choice.sh index 26997fd..1392192 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6choice.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6choice.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”ฃโ”โ” ๐Ÿ““ the second variable: - โ”ฃโ”โ” ๐Ÿ““ the third variable: - โ”ฃโ”โ” ๐Ÿ““ the forth variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”ฃโ”โ” ๐Ÿ““ the second variable: null + โ”ฃโ”โ” ๐Ÿ““ the third variable: null + โ”ฃโ”โ” ๐Ÿ““ the forth variable: null  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: a  โ”—โ”โ” ๐Ÿ““ the sixth variable: 1 diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6choice_link.sh b/tests/results/test_namespace_read_write_secrets_key/00_6choice_link.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6choice_link.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6choice_link.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6custom.sh b/tests/results/test_namespace_read_write_secrets_key/00_6custom.sh index 53d9014..4baedae 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6custom.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6custom.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”—โ”โ” ๐Ÿ““ the seconf variable: value diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6port.sh b/tests/results/test_namespace_read_write_secrets_key/00_6port.sh index fcbe06f..f792f2c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6port.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6port.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a port variable: + โ”ฃโ”โ” ๐Ÿ““ a port variable: null  โ”ฃโ”โ” ๐Ÿ““ a port variable with default value: 8080  โ”—โ”โ” ๐Ÿ““ a port variable with integer default value: 8080 diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6secret.sh b/tests/results/test_namespace_read_write_secrets_key/00_6secret.sh index b992973..1eceef2 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6secret.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6secret.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”—โ”โ” ๐Ÿ““ the second variable: ********** diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6secret_param.sh b/tests/results/test_namespace_read_write_secrets_key/00_6secret_param.sh index f2afd8a..4c37663 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6secret_param.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6secret_param.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”ฃโ”โ” ๐Ÿ““ the second variable: **********  โ”—โ”โ” ๐Ÿ““ the third variable: ********** diff --git a/tests/results/test_namespace_read_write_secrets_key/00_6string.sh b/tests/results/test_namespace_read_write_secrets_key/00_6string.sh index d4c3d53..ab12f59 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_6string.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_6string.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”ฃโ”โ” ๐Ÿ““ the second variable: - โ”ฃโ”โ” ๐Ÿ““ the third variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”ฃโ”โ” ๐Ÿ““ the second variable: null + โ”ฃโ”โ” ๐Ÿ““ the third variable: null  โ”ฃโ”โ” ๐Ÿ““ the forth variable: value  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: value  โ”ฃโ”โ” ๐Ÿ““ the sixth variable: value diff --git a/tests/results/test_namespace_read_write_secrets_key/00_7help.sh b/tests/results/test_namespace_read_write_secrets_key/00_7help.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_7help.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_7help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_7help_quote.sh b/tests/results/test_namespace_read_write_secrets_key/00_7help_quote.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_7help_quote.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_7help_quote.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_7help_sup.sh b/tests/results/test_namespace_read_write_secrets_key/00_7help_sup.sh index 4b800cc..72cb43e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_7help_sup.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_7help_sup.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first : - โ”—โ”โ” ๐Ÿ““ the second : + โ”ฃโ”โ” ๐Ÿ““ the first : null + โ”—โ”โ” ๐Ÿ““ the second : null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_8calculation_information.sh b/tests/results/test_namespace_read_write_secrets_key/00_8calculation_information.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_8calculation_information.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_8calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_8test.sh b/tests/results/test_namespace_read_write_secrets_key/00_8test.sh index a5472f1..855ebc4 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_8test.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_8test.sh @@ -3,9 +3,9 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null  โ”ฃโ”โ” ๐Ÿ““ the second variable: value - โ”ฃโ”โ” ๐Ÿ““ the third variable: - โ”ฃโ”โ” ๐Ÿ““ the forth variable: + โ”ฃโ”โ” ๐Ÿ““ the third variable: null + โ”ฃโ”โ” ๐Ÿ““ the forth variable: null  โ”ฃโ”โ” ๐Ÿ““ the fifth variable: true  โ”—โ”โ” ๐Ÿ““ the sixth variable: diff --git a/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information_other_variable.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_9default_calculation_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable2.sh index ad27a87..a12df6e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/00_9default_information_other_variable2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_secrets_key/01_9choice_variable_multi.sh index 182f267..ac7201f 100644 --- a/tests/results/test_namespace_read_write_secrets_key/01_9choice_variable_multi.sh +++ b/tests/results/test_namespace_read_write_secrets_key/01_9choice_variable_multi.sh @@ -7,4 +7,4 @@ Variables:  โ”ƒ โ”ฃโ”โ” a  โ”ƒ โ”ฃโ”โ” b  โ”ƒ โ”—โ”โ” c - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/02_0tags.sh b/tests/results/test_namespace_read_write_secrets_key/02_0tags.sh index 519461b..c9ca667 100644 --- a/tests/results/test_namespace_read_write_secrets_key/02_0tags.sh +++ b/tests/results/test_namespace_read_write_secrets_key/02_0tags.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ the first variable: - โ”—โ”โ” ๐Ÿ““ the second variable: + โ”ฃโ”โ” ๐Ÿ““ the first variable: null + โ”—โ”โ” ๐Ÿ““ the second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_4.sh index 78bfbc7..a9423ed 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_4.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a second variable: null  โ”—โ”โ” ๐Ÿ““ a third variable: value diff --git a/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_6.sh index fccdbbb..d4554f9 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_1default_calculation_hidden_6.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: value - โ”—โ”โ” ๐Ÿ““ a third variable: + โ”—โ”โ” ๐Ÿ““ a third variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation.sh index a2ce3b2..59090d8 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a conditional variable: no - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_boolean.sh index 0b9c9e0..1b25b0c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_boolean.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a conditional variable: no - โ”—โ”โ” ๐Ÿ““ a first variable: + โ”—โ”โ” ๐Ÿ““ a first variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_optional_default.sh index d2a53a8..843d144 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_optional_default.sh @@ -4,6 +4,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”ฃโ”โ” ๐Ÿ““ a first variable: - โ”ฃโ”โ” ๐Ÿ““ a second variable: - โ”—โ”โ” ๐Ÿ““ a forth variable: + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a forth variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable.sh index cb9f5dd..087386d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable4.sh index ce97288..d9072b2 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable4.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: yes - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable5.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable5.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable6.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable6.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable7.sh index cb9f5dd..087386d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable7.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: false - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable9.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5disabled_calculation_variable9.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/04_5validators.sh b/tests/results/test_namespace_read_write_secrets_key/04_5validators.sh index 4d07cba..ff5e489 100644 --- a/tests/results/test_namespace_read_write_secrets_key/04_5validators.sh +++ b/tests/results/test_namespace_read_write_secrets_key/04_5validators.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ An integer: + โ”—โ”โ” ๐Ÿ““ An integer: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_0redefine_description.sh b/tests/results/test_namespace_read_write_secrets_key/16_0redefine_description.sh index d1a7829..aff2289 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_0redefine_description.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_0redefine_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ Redefined: + โ”—โ”โ” ๐Ÿ““ Redefined: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write_secrets_key/16_3family_empty_at_ends.sh index 0f5aab4..de23685 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_3family_empty_at_ends.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_3family_empty_at_ends.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_choice.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_choice.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_choice.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_default_calculation.sh index 16dfe10..5a2ac83 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_default_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_default_calculation.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_family.sh b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_family.sh index 78ffa1b..42deef2 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_family.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ new description -  โ”—โ”โ” ๐Ÿ““ a variable: +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_help.sh b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_help.sh index c8701ea..d1ef5bd 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_help.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_help.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ redefine help: +  โ”—โ”โ” ๐Ÿ““ redefine help: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_remove_disable_calculation.sh index c1199f7..8e0280a 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5redefine_remove_disable_calculation.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: no - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_5test_redefine.sh b/tests/results/test_namespace_read_write_secrets_key/16_5test_redefine.sh index 748eeeb..73ad30f 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_5test_redefine.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_5test_redefine.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: no  โ”ฃโ”โ” ๐Ÿ““ a second variable: non - โ”—โ”โ” ๐Ÿ““ a third variable: + โ”—โ”โ” ๐Ÿ““ a third variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_secrets_key/16_6exists_redefine_family.sh index f003896..8df7928 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16_6exists_redefine_family.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16_6exists_redefine_family.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ new description - โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: null  โ”—โ”โ” ๐Ÿ“‚ a second family -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/16exists_exists.sh b/tests/results/test_namespace_read_write_secrets_key/16exists_exists.sh index 8571d03..dd51fa4 100644 --- a/tests/results/test_namespace_read_write_secrets_key/16exists_exists.sh +++ b/tests/results/test_namespace_read_write_secrets_key/16exists_exists.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ Description: + โ”—โ”โ” ๐Ÿ““ Description: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_0family_append.sh b/tests/results/test_namespace_read_write_secrets_key/20_0family_append.sh index 6e3a376..00fdca2 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_0family_append.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_0family_append.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ A family -  โ”ฃโ”โ” ๐Ÿ““ The first variable: -  โ”—โ”โ” ๐Ÿ““ The second variable: +  โ”ฃโ”โ” ๐Ÿ““ The first variable: null +  โ”—โ”โ” ๐Ÿ““ The second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family.sh b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family.sh index 444b8ef..9b7034e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_basic.sh index 444b8ef..9b7034e 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_basic.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_basic.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_expert.sh index cc932e6..0d1097c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_expert.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_expert.sh @@ -1,9 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family   โ”—โ”โ” ๐Ÿ“‚ a sub family -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_order.sh index 7ffa799..b85c082 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_order.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_0multi_family_order.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a variable: + โ”ฃโ”โ” ๐Ÿ““ a variable: null  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”ฃโ”โ” ๐Ÿ““ a first variable: +  โ”ฃโ”โ” ๐Ÿ““ a first variable: null   โ”ฃโ”โ” ๐Ÿ“‚ a sub family -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable: null +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_secrets_key/20_9default_information_parent.sh index 224586a..473fdb9 100644 --- a/tests/results/test_namespace_read_write_secrets_key/20_9default_information_parent.sh +++ b/tests/results/test_namespace_read_write_secrets_key/20_9default_information_parent.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”ฃโ”โ” ๐Ÿ““ a first variable: -  โ”—โ”โ” ๐Ÿ““ a second variable: +  โ”ฃโ”โ” ๐Ÿ““ a first variable: null +  โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition.sh index a37c949..d07ab24 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition.sh @@ -5,4 +5,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family -  โ”—โ”โ” ๐Ÿ““ a variable: +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition_sub_family.sh index 9373d0e..85273d3 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_param_condition_sub_family.sh index 667a6d0..21f944d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_0family_hidden_param_condition_sub_family.sh @@ -6,4 +6,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: no  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ a subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition.sh index c1199f7..8e0280a 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: no - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition_variable.sh index b5e6a4e..72579b5 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_0family_mandatory_condition_variable.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: true - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_secrets_key/24_7validators_variable_optional.sh index a1cf048..6402bcc 100644 --- a/tests/results/test_namespace_read_write_secrets_key/24_7validators_variable_optional.sh +++ b/tests/results/test_namespace_read_write_secrets_key/24_7validators_variable_optional.sh @@ -4,5 +4,5 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”ฃโ”โ” ๐Ÿ““ a first integer: +  โ”ฃโ”โ” ๐Ÿ““ a first integer: null   โ”—โ”โ” ๐Ÿ““ a second integer: 1 diff --git a/tests/results/test_namespace_read_write_secrets_key/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write_secrets_key/40_0leadership_reduce.sh index 66e9cb1..07887a6 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_0leadership_reduce.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_0leadership_reduce.sh @@ -6,10 +6,10 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value_1 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value_2 -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null   โ”—โ”โ” ๐Ÿ“‚ a leader    โ”ฃโ”โ” ๐Ÿ““ a leader: value_3 -   โ”—โ”โ” ๐Ÿ““ a follower: +   โ”—โ”โ” ๐Ÿ““ a follower: null diff --git a/tests/results/test_namespace_read_write_secrets_key/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_secrets_key/40_2leadership_leader_calculation.sh index c31c7f1..97cf942 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_2leadership_leader_calculation.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_2leadership_leader_calculation.sh @@ -6,9 +6,9 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: val1 -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a first follower: -  โ”ƒ โ”—โ”โ” ๐Ÿ““ a second follower: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a first follower: null +  โ”ƒ โ”—โ”โ” ๐Ÿ““ a second follower: null   โ”—โ”โ” ๐Ÿ“‚ a leader    โ”ฃโ”โ” ๐Ÿ““ a leader: val2 -   โ”ฃโ”โ” ๐Ÿ““ a first follower: -   โ”—โ”โ” ๐Ÿ““ a second follower: +   โ”ฃโ”โ” ๐Ÿ““ a first follower: null +   โ”—โ”โ” ๐Ÿ““ a second follower: null diff --git a/tests/results/test_namespace_read_write_secrets_key/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_secrets_key/40_8calculation_boolean_return_none.sh index 2a4cdc5..11228b5 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_8calculation_boolean_return_none.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_8calculation_boolean_return_none.sh @@ -4,4 +4,4 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: yes - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-outside-follower-no-mandatory.sh index 598a37c..8433bcb 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b - โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ““ variable:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower.sh index 2c268bd..b089b2d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower.sh @@ -6,14 +6,14 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ a leadership  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ a leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: null  โ”—โ”โ” ๐Ÿ“‚ a second leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader -  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: +  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: null   โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: val   โ”—โ”โ” ๐Ÿ“‚ a leader -   โ”ฃโ”โ” ๐Ÿ““ a leader: +   โ”ฃโ”โ” ๐Ÿ““ a leader: null    โ”—โ”โ” ๐Ÿ““ a follower: val diff --git a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower_not_same.sh index 7556986..cd35a86 100644 --- a/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_namespace_read_write_secrets_key/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -6,10 +6,10 @@ Variables:  โ”ฃโ”โ” ๐Ÿ“‚ a leadership  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ a leader  โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ a follower: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a leader  โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a leader: value2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ a follower: null  โ”—โ”โ” ๐Ÿ“‚ a second leadership   โ”ฃโ”โ” ๐Ÿ“‚ a leader   โ”ƒ โ”ฃโ”โ” ๐Ÿ““ a leader: value1 diff --git a/tests/results/test_namespace_read_write_secrets_key/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_secrets_key/44_4disabled_calcultion_follower.sh index 05fd907..399dfcf 100644 --- a/tests/results/test_namespace_read_write_secrets_key/44_4disabled_calcultion_follower.sh +++ b/tests/results/test_namespace_read_write_secrets_key/44_4disabled_calcultion_follower.sh @@ -7,4 +7,4 @@ Variables:  โ”—โ”โ” ๐Ÿ“‚ a leadership   โ”—โ”โ” ๐Ÿ“‚ aleader    โ”ฃโ”โ” ๐Ÿ““ aleader: a -   โ”—โ”โ” ๐Ÿ““ a follower: +   โ”—โ”โ” ๐Ÿ““ a follower: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic.sh index 24a2195..89d26d6 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0.sh index ab9d456..e881856 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ Dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ Dynamic variable: +  โ”—โ”โ” ๐Ÿ““ Dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0_type.sh index 23513a2..7eab5de 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0_type.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_0_type.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dyn variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dyn variable: null  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ A dyn variable: +  โ”—โ”โ” ๐Ÿ““ A dyn variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_1.sh index 24a2195..89d26d6 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_1.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_1_1.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_jinja_integer_empty.sh index b11243b..6833c03 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_jinja_integer_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_jinja_integer_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_no_description.sh index 7012dff..bf914b4 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_no_description.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_no_description.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_source_hidden.sh index 9487a5b..140148d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_source_hidden.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_static.sh index e9ace5a..7ef3e3d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_static.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_static.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: null  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: +  โ”—โ”โ” ๐Ÿ““ a variable inside a dynamic family: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_upper_char.sh index 1ccb0ee..9ac549b 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_0family_dynamic_upper_char.sh @@ -7,6 +7,6 @@ Variables:  โ”ƒ โ”ฃโ”โ” Val1  โ”ƒ โ”—โ”โ” VAL2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group.sh index fb73ae7..1626a02 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group.sh @@ -8,8 +8,8 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: null  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ with a variable: null + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 557a281..261554a 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a identifier variable: - โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: + โ”—โ”โ” ๐Ÿ““ a varible outside dynamic family: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f9e2b14..67548fa 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_outside_calc_empty.sh index 85622e1..b347fd5 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_2family_dynamic_outside_calc_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffx variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2.sh index 1c7356f..6dbf0aa 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2.sh @@ -6,7 +6,7 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ A suffix variable:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2 - โ”ฃโ”โ” ๐Ÿ““ a second variable: + โ”ฃโ”โ” ๐Ÿ““ a second variable: null  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: val  โ”—โ”โ” ๐Ÿ“‚ A dynamic family diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2_empty.sh index ea139a7..4084332 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc2_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ a second variable: + โ”—โ”โ” ๐Ÿ““ a second variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix.sh index ffaa3c6..ba9b933 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled.sh index fc362a4..bec6a25 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled2.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_disabled2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_2.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_2.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_3.sh index 90ed98f..ca4a47d 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_3.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_suffix_empty_3.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ A variable calculated: + โ”ฃโ”โ” ๐Ÿ““ A variable calculated: null  โ”—โ”โ” ๐Ÿ““ A suffix variable: diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable.sh index ffaa3c6..ba9b933 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable.sh @@ -7,7 +7,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled.sh index fe3be8f..70afe2c 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled.sh @@ -1,11 +1,11 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val1 - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ โ”—โ”โ” ๐Ÿ““ A new variable: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: null + โ”ƒ โ”—โ”โ” ๐Ÿ““ A new variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic famify for val2 -  โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: -  โ”—โ”โ” ๐Ÿ““ A new variable: +  โ”ฃโ”โ” ๐Ÿ““ A dynamic variable: null +  โ”—โ”โ” ๐Ÿ““ A new variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled_outside.sh index d7a6ff3..259f852 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic famify for val2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”—โ”โ” ๐Ÿ““ A new variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null + โ”—โ”โ” ๐Ÿ““ A new variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_empty.sh index d8d3aa9..71f6662 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_calc_variable_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”—โ”โ” ๐Ÿ““ A variable calculated: + โ”—โ”โ” ๐Ÿ““ A variable calculated: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_hidden_suffix.sh index 03daec9..d85e744 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_hidden_suffix.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”ฃโ”โ” ๐Ÿ““ a variable: +  โ”ฃโ”โ” ๐Ÿ““ a variable: null   โ”—โ”โ” ๐Ÿ“‚ a family -   โ”—โ”โ” ๐Ÿ““ a new variable: +   โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_variable_outside_suffix_empty.sh index 8bfa77a..f7f7d03 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ asuffix variable: - โ”—โ”โ” ๐Ÿ““ a variable: + โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_sub_dynamic_1_0_2.sh index 8b4417a..56099e1 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_sub_dynamic_1_0_2.sh @@ -8,11 +8,11 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ A dynamic family - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ A dynamic family   โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family -  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: +  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null   โ”—โ”โ” ๐Ÿ“‚ A dynamic family -   โ”—โ”โ” ๐Ÿ““ A dynamic variable: +   โ”—โ”โ” ๐Ÿ““ A dynamic variable: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi.sh index 39cce63..3950d0b 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi2.sh index 39cce63..3950d0b 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi2.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_6family_dynamic_suffix_auto_multi2.sh @@ -8,14 +8,14 @@ Variables:  โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: + โ”ƒ  โ”—โ”โ” ๐Ÿ““ A dynamic variable: null  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” null   โ”—โ”โ” null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic.sh index 9061fba..cb8c858 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic.sh @@ -7,4 +7,4 @@ Variables: โ”ƒ  โ”—โ”โ” a โ”—โ”โ” ๐Ÿ“‚ extra  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic_extra.sh index 080b217..1fbeaa2 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic_extra.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_9extra_dynamic_extra.sh @@ -10,4 +10,4 @@ Variables:  โ”ฃโ”โ” ๐Ÿ““ a variable:  โ”ƒ โ”—โ”โ” a  โ”—โ”โ” ๐Ÿ“‚ dyn_a -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_read_write_secrets_key/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_secrets_key/60_9family_dynamic_calc_both.sh index a30dc55..6815e25 100644 --- a/tests/results/test_namespace_read_write_secrets_key/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_namespace_read_write_secrets_key/60_9family_dynamic_calc_both.sh @@ -5,6 +5,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a suffix variable: val2  โ”ฃโ”โ” ๐Ÿ“‚ a dynamic family - โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: + โ”ƒ โ”—โ”โ” ๐Ÿ““ a dynamic variable: null  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”—โ”โ” ๐Ÿ““ a dynamic variable: +  โ”—โ”โ” ๐Ÿ““ a dynamic variable: null diff --git a/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.sh index e3356c1..6772ad8 100644 --- a/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_secrets/00_2default_calculated_params_permissive.sh @@ -7,6 +7,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ“‚ leadership  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ var1 - โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ—€ loaded from rougail-test (โณ a_value) + โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value  โ”ƒ  โ”—โ”โ” ๐Ÿ““ var2: a_value  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.sh index 9042911..f236a13 100644 --- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_3.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ var1: value  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.sh index 583747a..ecdec79 100644 --- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_4.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ var1: value  โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.sh index 52f77ca..170db53 100644 --- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_5.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) - โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ var2: string1  โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.sh index 032727a..fedf7ec 100644 --- a/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_secrets/04_1default_calculation_hidden_6.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) - โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh index 0d35131..d51fe35 100644 --- a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var1: null  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.sh index 7dbfa99..e88bc98 100644 --- a/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_optional_default.sh @@ -1,11 +1,12 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ var2: null โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ var3: null โ—€ loaded from rougail-test - โ”—โ”โ” ๐Ÿ““ var4: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var2: null + โ”ฃโ”โ” ๐Ÿ““ var3: null + โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.sh index d94e79c..693ff3f 100644 --- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable5.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”ฃโ”โ” ๐Ÿ““ condition: false โ—€ loaded from rougail-test (โณ false) + โ”ฃโ”โ” ๐Ÿ““ condition: false  โ”—โ”โ” ๐Ÿ““ variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.sh index dea9788..c40f030 100644 --- a/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable8.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) + โ”—โ”โ” ๐Ÿ““ condition: true diff --git a/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh index a7412c9..80ce4f4 100644 --- a/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_secrets/04_5hidden_calculation2.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ string1) - โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ var1: string1 + โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_namespace_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_secrets/16_5exists_redefine.sh index 7cae673..9d2bdec 100644 --- a/tests/results/test_namespace_secrets/16_5exists_redefine.sh +++ b/tests/results/test_namespace_secrets/16_5exists_redefine.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ var1: yes โ—€ loaded from rougail-test (โณ yes) + โ”—โ”โ” ๐Ÿ““ var1: yes diff --git a/tests/results/test_namespace_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_secrets/16_5redefine_hidden.sh index 4428a9e..6cd9f8d 100644 --- a/tests/results/test_namespace_secrets/16_5redefine_hidden.sh +++ b/tests/results/test_namespace_secrets/16_5redefine_hidden.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail - โ”—โ”โ” ๐Ÿ““ variable: no โ—€ loaded from rougail-test (โณ no) + โ”—โ”โ” ๐Ÿ““ variable: no diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh index efd96fe..192f54c 100644 --- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true)  โ”—โ”โ” ๐Ÿ“‚ family   โ”—โ”โ” ๐Ÿ“‚ subfamily -   โ”—โ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh index 2b0e28a..e2cdcfd 100644 --- a/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_secrets/24_0family_hidden_condition_with_variable.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ condition1: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ condition2: true โ—€ loaded from rougail-test (โณ false)  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.sh index 43bef4c..55509b6 100644 --- a/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_secrets/60_0family_dynamic_source_hidden.sh @@ -1,12 +1,12 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”ฃโ”โ” ๐Ÿ““ var: - โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) - โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) + โ”ƒ โ”ฃโ”โ” val1 + โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_namespace_secrets/60_0family_hidden.sh b/tests/results/test_namespace_secrets/60_0family_hidden.sh index 57d6ef8..f99f161 100644 --- a/tests/results/test_namespace_secrets/60_0family_hidden.sh +++ b/tests/results/test_namespace_secrets/60_0family_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.sh index 896d66e..cf23f85 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: a value  โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a value) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh index 49d6a1b..89fab96 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ var: true  โ”—โ”โ” ๐Ÿ““ var2: true โ—€ loaded from rougail-test (โณ true) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh index 67e24c2..8d21b36 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -9,12 +10,12 @@ Variables:  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ““ var: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”—โ”โ” ๐Ÿ““ var2:   โ”ฃโ”โ” string1 โ—€ loaded from rougail-test (โณ a value)   โ”ฃโ”โ” string2 โ—€ loaded from rougail-test (โณ a second value) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh index fbcb19e..f12edf5 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ rougail @@ -9,6 +9,6 @@ Variables:  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family  โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ dynval2 -  โ”ฃโ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”ฃโ”โ” ๐Ÿ““ var: null   โ”—โ”โ” ๐Ÿ“‚ family -   โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_namespace_secrets_key/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_secrets_key/00_2default_calculated_params_permissive.sh index fc7f853..dd4588f 100644 --- a/tests/results/test_namespace_secrets_key/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_namespace_secrets_key/00_2default_calculated_params_permissive.sh @@ -7,6 +7,6 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ“‚ leadership  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a first variable - โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a first variable: a_value โ—€ loaded from rougail-test (โณ a_value) + โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ a first variable: a_value  โ”ƒ  โ”—โ”โ” ๐Ÿ““ a first variable: a_value  โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_3.sh index 5040183..022ab71 100644 --- a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_3.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ a first variable: value  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_4.sh index 66b77fb..54f8d6e 100644 --- a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_4.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a first variable: value โ—€ loaded from rougail-test (โณ value) + โ”ฃโ”โ” ๐Ÿ““ a first variable: value  โ”ฃโ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_5.sh index 0886dd8..a52929d 100644 --- a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_5.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ value) - โ”ฃโ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ a second variable: string1  โ”—โ”โ” ๐Ÿ““ a third variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_6.sh index 4a5196a..3985306 100644 --- a/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_namespace_secrets_key/04_1default_calculation_hidden_6.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ value) - โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”—โ”โ” ๐Ÿ““ a second variable: string1 diff --git a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional.sh index eeccb7a..239a260 100644 --- a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional.sh +++ b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ a first variable: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ a first variable: null  โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional_default.sh index 9fdfdc2..6a3fab5 100644 --- a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_optional_default.sh @@ -1,11 +1,12 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ a first variable: null โ—€ loaded from rougail-test - โ”ฃโ”โ” ๐Ÿ““ a second variable: null โ—€ loaded from rougail-test - โ”—โ”โ” ๐Ÿ““ a forth variable: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ a first variable: null + โ”ฃโ”โ” ๐Ÿ““ a second variable: null + โ”—โ”โ” ๐Ÿ““ a forth variable: null diff --git a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable5.sh index 0afde09..4d1192c 100644 --- a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable5.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”ฃโ”โ” ๐Ÿ““ a condition: false โ—€ loaded from rougail-test (โณ false) + โ”ฃโ”โ” ๐Ÿ““ a condition: false  โ”—โ”โ” ๐Ÿ““ a variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable8.sh index a10e24e..9c4d060 100644 --- a/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_namespace_secrets_key/04_5disabled_calculation_variable8.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a condition: true โ—€ loaded from rougail-test (โณ true) + โ”—โ”โ” ๐Ÿ““ a condition: true diff --git a/tests/results/test_namespace_secrets_key/04_5hidden_calculation2.sh b/tests/results/test_namespace_secrets_key/04_5hidden_calculation2.sh index 408943d..3a29df2 100644 --- a/tests/results/test_namespace_secrets_key/04_5hidden_calculation2.sh +++ b/tests/results/test_namespace_secrets_key/04_5hidden_calculation2.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a condition: string1 โ—€ loaded from rougail-test (โณ no) - โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 โ—€ loaded from rougail-test (โณ string1) - โ”—โ”โ” ๐Ÿ““ a second variable: string1 โ—€ loaded from rougail-test (โณ string1) + โ”ฃโ”โ” ๐Ÿ““ a first variable: string1 + โ”—โ”โ” ๐Ÿ““ a second variable: string1 diff --git a/tests/results/test_namespace_secrets_key/16_5exists_redefine.sh b/tests/results/test_namespace_secrets_key/16_5exists_redefine.sh index 2f0532e..470d2ba 100644 --- a/tests/results/test_namespace_secrets_key/16_5exists_redefine.sh +++ b/tests/results/test_namespace_secrets_key/16_5exists_redefine.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a first variable: yes โ—€ loaded from rougail-test (โณ yes) + โ”—โ”โ” ๐Ÿ““ a first variable: yes diff --git a/tests/results/test_namespace_secrets_key/16_5redefine_hidden.sh b/tests/results/test_namespace_secrets_key/16_5redefine_hidden.sh index 25d3f7d..ffcc856 100644 --- a/tests/results/test_namespace_secrets_key/16_5redefine_hidden.sh +++ b/tests/results/test_namespace_secrets_key/16_5redefine_hidden.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail - โ”—โ”โ” ๐Ÿ““ a variable: no โ—€ loaded from rougail-test (โณ no) + โ”—โ”โ” ๐Ÿ““ a variable: no diff --git a/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_variable_sub_family.sh index ca311f0..12a2e1f 100644 --- a/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_variable_sub_family.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ the variable use has condition: true โ—€ loaded from rougail-test (โณ true)  โ”—โ”โ” ๐Ÿ“‚ possibly hidden family   โ”—โ”โ” ๐Ÿ“‚ a subfamily -   โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_with_variable.sh index e1c8779..158a924 100644 --- a/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_with_variable.sh +++ b/tests/results/test_namespace_secrets_key/24_0family_hidden_condition_with_variable.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ a first conditional variable: true โ—€ loaded from rougail-test (โณ false)  โ”ฃโ”โ” ๐Ÿ““ a second conditional variable: true โ—€ loaded from rougail-test (โณ false)  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_secrets_key/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_secrets_key/60_0family_dynamic_source_hidden.sh index 1f86afd..7ef21f6 100644 --- a/tests/results/test_namespace_secrets_key/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_namespace_secrets_key/60_0family_dynamic_source_hidden.sh @@ -1,12 +1,12 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”ฃโ”โ” ๐Ÿ““ A suffix variable: - โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) - โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) + โ”ƒ โ”ฃโ”โ” val1 + โ”ƒ โ”—โ”โ” val2  โ”ฃโ”โ” ๐Ÿ“‚ A dynamic family  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ A dynamic family diff --git a/tests/results/test_namespace_secrets_key/60_0family_hidden.sh b/tests/results/test_namespace_secrets_key/60_0family_hidden.sh index 677148f..eaf977f 100644 --- a/tests/results/test_namespace_secrets_key/60_0family_hidden.sh +++ b/tests/results/test_namespace_secrets_key/60_0family_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail  โ”—โ”โ” ๐Ÿ“‚ a family -  โ”—โ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ a variable: null diff --git a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh index a8613f8..a88f810 100644 --- a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh +++ b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value โ—€ loaded from rougail-test (โณ a value) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: a value  โ”—โ”โ” ๐Ÿ““ A variable calculated: string1 โ—€ loaded from rougail-test (โณ a value) diff --git a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh index fb1f070..10b38fd 100644 --- a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_boolean.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -8,7 +9,7 @@ Variables:  โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1)  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true  โ”ฃโ”โ” ๐Ÿ“‚ dynval2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true โ—€ loaded from rougail-test (โณ true) + โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: true  โ”—โ”โ” ๐Ÿ““ A variable calculated: true โ—€ loaded from rougail-test (โณ true) diff --git a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh index 66d1e73..c18943b 100644 --- a/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ b/tests/results/test_namespace_secrets_key/60_5family_dynamic_calc_suffix_hidden_multi.sh @@ -1,6 +1,7 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -9,12 +10,12 @@ Variables:  โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2)  โ”ฃโ”โ” ๐Ÿ“‚ dynval1  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”ฃโ”โ” ๐Ÿ“‚ dynval2  โ”ƒ โ”—โ”โ” ๐Ÿ““ A dynamic variable: - โ”ƒ  โ”ฃโ”โ” a value โ—€ loaded from rougail-test (โณ a value) - โ”ƒ  โ”—โ”โ” a second value โ—€ loaded from rougail-test (โณ a second value) + โ”ƒ  โ”ฃโ”โ” a value + โ”ƒ  โ”—โ”โ” a second value  โ”—โ”โ” ๐Ÿ““ A variable calculated:   โ”ฃโ”โ” string1 โ—€ loaded from rougail-test (โณ a value)   โ”ฃโ”โ” string2 โ—€ loaded from rougail-test (โณ a second value) diff --git a/tests/results/test_namespace_secrets_key/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_secrets_key/60_5family_dynamic_hidden_suffix.sh index 54038b7..366dff7 100644 --- a/tests/results/test_namespace_secrets_key/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_namespace_secrets_key/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ Rougail @@ -9,6 +9,6 @@ Variables:  โ”ƒ โ”—โ”โ” ๐Ÿ“‚ a family  โ”ƒ  โ”—โ”โ” ๐Ÿ““ a new variable: string1 โ—€ loaded from rougail-test  โ”—โ”โ” ๐Ÿ“‚ a dynamic family -  โ”ฃโ”โ” ๐Ÿ““ a variable: null โ—€ loaded from rougail-test +  โ”ฃโ”โ” ๐Ÿ““ a variable: null   โ”—โ”โ” ๐Ÿ“‚ a family -   โ”—โ”โ” ๐Ÿ““ a new variable: null โ—€ loaded from rougail-test +   โ”—โ”โ” ๐Ÿ““ a new variable: null diff --git a/tests/results/test_read_write/00_0version_underscore.sh b/tests/results/test_read_write/00_0version_underscore.sh index a192596..393c7ec 100644 --- a/tests/results/test_read_write/00_0version_underscore.sh +++ b/tests/results/test_read_write/00_0version_underscore.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ version: +โ”—โ”โ” ๐Ÿ““ version: null diff --git a/tests/results/test_read_write/00_1empty_variable.sh b/tests/results/test_read_write/00_1empty_variable.sh index 79fbd8d..350203f 100644 --- a/tests/results/test_read_write/00_1empty_variable.sh +++ b/tests/results/test_read_write/00_1empty_variable.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ empty: +โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_read_write/00_2default_calculated_variable_description.sh b/tests/results/test_read_write/00_2default_calculated_variable_description.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_2default_calculated_variable_description.sh +++ b/tests/results/test_read_write/00_2default_calculated_variable_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.sh index 5b67013..91f8d05 100644 --- a/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_read_write/00_2default_calculated_variable_description_multi_line.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”—โ”โ” ๐Ÿ““ var3: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write/00_4load_subfolder.sh b/tests/results/test_read_write/00_4load_subfolder.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_4load_subfolder.sh +++ b/tests/results/test_read_write/00_4load_subfolder.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_6choice.sh b/tests/results/test_read_write/00_6choice.sh index 3697e52..f41dcad 100644 --- a/tests/results/test_read_write/00_6choice.sh +++ b/tests/results/test_read_write/00_6choice.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”ฃโ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”ฃโ”โ” ๐Ÿ““ var4: null โ”ฃโ”โ” ๐Ÿ““ var5: a โ”—โ”โ” ๐Ÿ““ var6: 1 diff --git a/tests/results/test_read_write/00_6choice_link.sh b/tests/results/test_read_write/00_6choice_link.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_6choice_link.sh +++ b/tests/results/test_read_write/00_6choice_link.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_6custom.sh b/tests/results/test_read_write/00_6custom.sh index 190faa1..261194a 100644 --- a/tests/results/test_read_write/00_6custom.sh +++ b/tests/results/test_read_write/00_6custom.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ custom1: +โ”ฃโ”โ” ๐Ÿ““ custom1: null โ”—โ”โ” ๐Ÿ““ custom2: value diff --git a/tests/results/test_read_write/00_6port.sh b/tests/results/test_read_write/00_6port.sh index 8c3a23b..e0bfb7f 100644 --- a/tests/results/test_read_write/00_6port.sh +++ b/tests/results/test_read_write/00_6port.sh @@ -2,6 +2,6 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ variable1: +โ”ฃโ”โ” ๐Ÿ““ variable1: null โ”ฃโ”โ” ๐Ÿ““ variable2: 8080 โ”—โ”โ” ๐Ÿ““ variable3: 8080 diff --git a/tests/results/test_read_write/00_6secret.sh b/tests/results/test_read_write/00_6secret.sh index add4f43..4390d4b 100644 --- a/tests/results/test_read_write/00_6secret.sh +++ b/tests/results/test_read_write/00_6secret.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ secret1: +โ”ฃโ”โ” ๐Ÿ““ secret1: null โ”—โ”โ” ๐Ÿ““ secret2: value diff --git a/tests/results/test_read_write/00_6secret_param.sh b/tests/results/test_read_write/00_6secret_param.sh index 1d0312e..5dbdc68 100644 --- a/tests/results/test_read_write/00_6secret_param.sh +++ b/tests/results/test_read_write/00_6secret_param.sh @@ -2,6 +2,6 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ secret1: +โ”ฃโ”โ” ๐Ÿ““ secret1: null โ”ฃโ”โ” ๐Ÿ““ secret2: value โ”—โ”โ” ๐Ÿ““ secret3: value diff --git a/tests/results/test_read_write/00_6string.sh b/tests/results/test_read_write/00_6string.sh index 94d98fa..be8c786 100644 --- a/tests/results/test_read_write/00_6string.sh +++ b/tests/results/test_read_write/00_6string.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”ฃโ”โ” ๐Ÿ““ var3: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null โ”ฃโ”โ” ๐Ÿ““ var4: value โ”ฃโ”โ” ๐Ÿ““ var5: value โ”ฃโ”โ” ๐Ÿ““ var6: value diff --git a/tests/results/test_read_write/00_7help.sh b/tests/results/test_read_write/00_7help.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_7help.sh +++ b/tests/results/test_read_write/00_7help.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_7help_quote.sh b/tests/results/test_read_write/00_7help_quote.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_7help_quote.sh +++ b/tests/results/test_read_write/00_7help_quote.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_7help_sup.sh b/tests/results/test_read_write/00_7help_sup.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_7help_sup.sh +++ b/tests/results/test_read_write/00_7help_sup.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_8calculation_information.sh b/tests/results/test_read_write/00_8calculation_information.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/00_8calculation_information.sh +++ b/tests/results/test_read_write/00_8calculation_information.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/00_8test.sh b/tests/results/test_read_write/00_8test.sh index 94ff65b..e1e42c9 100644 --- a/tests/results/test_read_write/00_8test.sh +++ b/tests/results/test_read_write/00_8test.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ““ var2: value -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”ฃโ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”ฃโ”โ” ๐Ÿ““ var4: null โ”ฃโ”โ” ๐Ÿ““ var5: true โ”—โ”โ” ๐Ÿ““ var6: diff --git a/tests/results/test_read_write/00_9default_calculation_information.sh b/tests/results/test_read_write/00_9default_calculation_information.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write/00_9default_calculation_information.sh +++ b/tests/results/test_read_write/00_9default_calculation_information.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_read_write/00_9default_calculation_information_other_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_9default_information_other_variable.sh b/tests/results/test_read_write/00_9default_information_other_variable.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_9default_information_other_variable.sh +++ b/tests/results/test_read_write/00_9default_information_other_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/00_9default_information_other_variable2.sh b/tests/results/test_read_write/00_9default_information_other_variable2.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/00_9default_information_other_variable2.sh +++ b/tests/results/test_read_write/00_9default_information_other_variable2.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/01_9choice_variable_multi.sh b/tests/results/test_read_write/01_9choice_variable_multi.sh index 9683651..2b134b7 100644 --- a/tests/results/test_read_write/01_9choice_variable_multi.sh +++ b/tests/results/test_read_write/01_9choice_variable_multi.sh @@ -6,4 +6,4 @@ Variables: โ”ƒ โ”ฃโ”โ” a โ”ƒ โ”ฃโ”โ” b โ”ƒ โ”—โ”โ” c -โ”—โ”โ” ๐Ÿ““ variable2: +โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write/02_0tags.sh b/tests/results/test_read_write/02_0tags.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write/02_0tags.sh +++ b/tests/results/test_read_write/02_0tags.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_4.sh b/tests/results/test_read_write/04_1default_calculation_hidden_4.sh index b83c535..75f226a 100644 --- a/tests/results/test_read_write/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_read_write/04_1default_calculation_hidden_4.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var2: null โ”—โ”โ” ๐Ÿ““ var3: value diff --git a/tests/results/test_read_write/04_1default_calculation_hidden_6.sh b/tests/results/test_read_write/04_1default_calculation_hidden_6.sh index a8603b5..54112a6 100644 --- a/tests/results/test_read_write/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_read_write/04_1default_calculation_hidden_6.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: value -โ”—โ”โ” ๐Ÿ““ var3: +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_boolean.sh b/tests/results/test_read_write/04_5disabled_calculation_boolean.sh index d7a852b..2d64455 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_boolean.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ variable1: +โ”—โ”โ” ๐Ÿ““ variable1: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_optional_default.sh b/tests/results/test_read_write/04_5disabled_calculation_optional_default.sh index 98becf1..6375e32 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_optional_default.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”—โ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable.sh b/tests/results/test_read_write/04_5disabled_calculation_variable.sh index e896114..6bcd950 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write/04_5disabled_calculation_variable4.sh index be64e4e..c40ba99 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable4.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: yes -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable5.sh b/tests/results/test_read_write/04_5disabled_calculation_variable5.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable5.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable6.sh b/tests/results/test_read_write/04_5disabled_calculation_variable6.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable6.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable7.sh b/tests/results/test_read_write/04_5disabled_calculation_variable7.sh index e896114..6bcd950 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable7.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5disabled_calculation_variable9.sh b/tests/results/test_read_write/04_5disabled_calculation_variable9.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_read_write/04_5disabled_calculation_variable9.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/04_5validators.sh b/tests/results/test_read_write/04_5validators.sh index 096391d..8f8a333 100644 --- a/tests/results/test_read_write/04_5validators.sh +++ b/tests/results/test_read_write/04_5validators.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ int: +โ”—โ”โ” ๐Ÿ““ int: null diff --git a/tests/results/test_read_write/16_0redefine_description.sh b/tests/results/test_read_write/16_0redefine_description.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write/16_0redefine_description.sh +++ b/tests/results/test_read_write/16_0redefine_description.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/16_3family_empty_at_ends.sh b/tests/results/test_read_write/16_3family_empty_at_ends.sh index 47dc820..e419ea1 100644 --- a/tests/results/test_read_write/16_3family_empty_at_ends.sh +++ b/tests/results/test_read_write/16_3family_empty_at_ends.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ var1: + โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write/16_5redefine_choice.sh b/tests/results/test_read_write/16_5redefine_choice.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/16_5redefine_choice.sh +++ b/tests/results/test_read_write/16_5redefine_choice.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/16_5redefine_default_calculation.sh b/tests/results/test_read_write/16_5redefine_default_calculation.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write/16_5redefine_default_calculation.sh +++ b/tests/results/test_read_write/16_5redefine_default_calculation.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/16_5redefine_family.sh b/tests/results/test_read_write/16_5redefine_family.sh index 514d892..398e93a 100644 --- a/tests/results/test_read_write/16_5redefine_family.sh +++ b/tests/results/test_read_write/16_5redefine_family.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/16_5redefine_help.sh b/tests/results/test_read_write/16_5redefine_help.sh index 514d892..398e93a 100644 --- a/tests/results/test_read_write/16_5redefine_help.sh +++ b/tests/results/test_read_write/16_5redefine_help.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh index ac3324c..33b1ccb 100644 --- a/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_read_write/16_5redefine_remove_disable_calculation.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/16_5test_redefine.sh b/tests/results/test_read_write/16_5test_redefine.sh index 0ab7282..cfdf5ef 100644 --- a/tests/results/test_read_write/16_5test_redefine.sh +++ b/tests/results/test_read_write/16_5test_redefine.sh @@ -4,4 +4,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: no โ”ฃโ”โ” ๐Ÿ““ var2: non -โ”—โ”โ” ๐Ÿ““ var3: +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write/16_6exists_redefine_family.sh b/tests/results/test_read_write/16_6exists_redefine_family.sh index 8c3a058..3bb0b1c 100644 --- a/tests/results/test_read_write/16_6exists_redefine_family.sh +++ b/tests/results/test_read_write/16_6exists_redefine_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ family1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: +โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: null โ”—โ”โ” ๐Ÿ“‚ family2 - โ”—โ”โ” ๐Ÿ““ variable2: + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write/16exists_exists.sh b/tests/results/test_read_write/16exists_exists.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write/16exists_exists.sh +++ b/tests/results/test_read_write/16exists_exists.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/20_0family_append.sh b/tests/results/test_read_write/20_0family_append.sh index eef8d88..20ad4ed 100644 --- a/tests/results/test_read_write/20_0family_append.sh +++ b/tests/results/test_read_write/20_0family_append.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/20_0multi_family.sh b/tests/results/test_read_write/20_0multi_family.sh index 10779d5..73f227e 100644 --- a/tests/results/test_read_write/20_0multi_family.sh +++ b/tests/results/test_read_write/20_0multi_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/20_0multi_family_basic.sh b/tests/results/test_read_write/20_0multi_family_basic.sh index 10779d5..73f227e 100644 --- a/tests/results/test_read_write/20_0multi_family_basic.sh +++ b/tests/results/test_read_write/20_0multi_family_basic.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/20_0multi_family_expert.sh b/tests/results/test_read_write/20_0multi_family_expert.sh index b277658..346f3f4 100644 --- a/tests/results/test_read_write/20_0multi_family_expert.sh +++ b/tests/results/test_read_write/20_0multi_family_expert.sh @@ -1,8 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write/20_0multi_family_order.sh b/tests/results/test_read_write/20_0multi_family_order.sh index 59fceb5..bb8b026 100644 --- a/tests/results/test_read_write/20_0multi_family_order.sh +++ b/tests/results/test_read_write/20_0multi_family_order.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ variable: +โ”ฃโ”โ” ๐Ÿ““ variable: null โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ variable1: + โ”ฃโ”โ” ๐Ÿ““ variable1: null  โ”ฃโ”โ” ๐Ÿ“‚ subfamily - โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: - โ”—โ”โ” ๐Ÿ““ variable2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: null + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write/20_9default_information_parent.sh b/tests/results/test_read_write/20_9default_information_parent.sh index eef8d88..20ad4ed 100644 --- a/tests/results/test_read_write/20_9default_information_parent.sh +++ b/tests/results/test_read_write/20_9default_information_parent.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/20_9family_absolute.sh b/tests/results/test_read_write/20_9family_absolute.sh index e92e6c2..214007e 100644 --- a/tests/results/test_read_write/20_9family_absolute.sh +++ b/tests/results/test_read_write/20_9family_absolute.sh @@ -2,15 +2,15 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ“‚ family -โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var2: +โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var2: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ subfamily โ”ƒ  โ”—โ”โ” ๐Ÿ““ variable: โ”ƒ   โ”ฃโ”โ” null โ”ƒ   โ”—โ”โ” null โ”—โ”โ” ๐Ÿ“‚ family2 - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”ฃโ”โ” ๐Ÿ““ var3: string4  โ”—โ”โ” ๐Ÿ“‚ subfamily   โ”—โ”โ” ๐Ÿ““ variable: diff --git a/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh index cfce95a..e348151 100644 --- a/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_read_write/24_0family_hidden_condition_sub_family.sh @@ -5,4 +5,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh index 3228e1c..71f5d92 100644 --- a/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_read_write/24_0family_hidden_param_condition_sub_family.sh @@ -5,4 +5,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ sub_family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write/24_0family_mandatory_condition.sh b/tests/results/test_read_write/24_0family_mandatory_condition.sh index 855084b..9f0886f 100644 --- a/tests/results/test_read_write/24_0family_mandatory_condition.sh +++ b/tests/results/test_read_write/24_0family_mandatory_condition.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh index f8bcaee..8b2e3af 100644 --- a/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_read_write/24_0family_mandatory_condition_variable.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/24_7validators_variable_optional.sh b/tests/results/test_read_write/24_7validators_variable_optional.sh index 4e54b7f..3cd2906 100644 --- a/tests/results/test_read_write/24_7validators_variable_optional.sh +++ b/tests/results/test_read_write/24_7validators_variable_optional.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ general - โ”ฃโ”โ” ๐Ÿ““ int: + โ”ฃโ”โ” ๐Ÿ““ int: null  โ”—โ”โ” ๐Ÿ““ int2: 1 diff --git a/tests/results/test_read_write/40_0leadership_reduce.sh b/tests/results/test_read_write/40_0leadership_reduce.sh index 3f55e25..e5fdf17 100644 --- a/tests/results/test_read_write/40_0leadership_reduce.sh +++ b/tests/results/test_read_write/40_0leadership_reduce.sh @@ -5,10 +5,10 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ leadership  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leader   โ”ฃโ”โ” ๐Ÿ““ leader: value_3 -  โ”—โ”โ” ๐Ÿ““ follower: +  โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh index 1963603..a6f6a50 100644 --- a/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_read_write/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -5,10 +5,10 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ““ variable:  โ”ฃโ”โ” null  โ”—โ”โ” null diff --git a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.sh index 4c6ef36..3ab9831 100644 --- a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower.sh @@ -5,14 +5,14 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership_1 โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ“‚ leadership_2  โ”ฃโ”โ” ๐Ÿ“‚ leader - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: null  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: val  โ”—โ”โ” ๐Ÿ“‚ leader -  โ”ฃโ”โ” ๐Ÿ““ leader: +  โ”ฃโ”โ” ๐Ÿ““ leader: null   โ”—โ”โ” ๐Ÿ““ follower: val diff --git a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh index e59886c..45dbca5 100644 --- a/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_read_write/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -5,10 +5,10 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership_1 โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ“‚ leadership_2  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 diff --git a/tests/results/test_read_write/60_0family_dynamic.sh b/tests/results/test_read_write/60_0family_dynamic.sh index 50ad329..a3fcd1b 100644 --- a/tests/results/test_read_write/60_0family_dynamic.sh +++ b/tests/results/test_read_write/60_0family_dynamic.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_1_1.sh b/tests/results/test_read_write/60_0family_dynamic_1_1.sh index 87de137..228bc6f 100644 --- a/tests/results/test_read_write/60_0family_dynamic_1_1.sh +++ b/tests/results/test_read_write/60_0family_dynamic_1_1.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: +โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ vardyn: + โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_read_write/60_0family_dynamic_no_description.sh b/tests/results/test_read_write/60_0family_dynamic_no_description.sh index 50ad329..a3fcd1b 100644 --- a/tests/results/test_read_write/60_0family_dynamic_no_description.sh +++ b/tests/results/test_read_write/60_0family_dynamic_no_description.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_source_hidden.sh b/tests/results/test_read_write/60_0family_dynamic_source_hidden.sh index d82f82b..794c6a5 100644 --- a/tests/results/test_read_write/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_read_write/60_0family_dynamic_source_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_static.sh b/tests/results/test_read_write/60_0family_dynamic_static.sh index d82f82b..794c6a5 100644 --- a/tests/results/test_read_write/60_0family_dynamic_static.sh +++ b/tests/results/test_read_write/60_0family_dynamic_static.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_0family_dynamic_upper_char.sh b/tests/results/test_read_write/60_0family_dynamic_upper_char.sh index 4994ac7..ae19356 100644 --- a/tests/results/test_read_write/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_read_write/60_0family_dynamic_upper_char.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” Val1 โ”ƒ โ”—โ”โ” VAL2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh index b9be1f1..c8467ef 100644 --- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group.sh @@ -7,8 +7,8 @@ Variables: โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family -โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family -โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f18a9d6..d494295 100644 --- a/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_read_write/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh index bf7f466..e2bc9d7 100644 --- a/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_read_write/60_2family_dynamic_outside_calc_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ newvar: +โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.sh index 516f591..06e4cea 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh index 91824e9..8a18a9a 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable.sh @@ -6,7 +6,7 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.sh index 35d13dc..7d293b2 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh index b1d3f12..8e87373 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh index f18a9d6..d494295 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_variable_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh index 3fc4384..7d7ebdb 100644 --- a/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_read_write/60_5family_dynamic_hidden_suffix.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ dynval1 - โ”ฃโ”โ” ๐Ÿ““ var: + โ”ฃโ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_read_write/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write/60_9family_dynamic_calc_both.sh index 8de12e6..2e06944 100644 --- a/tests/results/test_read_write/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_read_write/60_9family_dynamic_calc_both.sh @@ -4,6 +4,6 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ var: val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: +โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ vardyn: + โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh index 98becf1..6375e32 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/04_5disabled_calculation_optional_default.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”—โ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh index 10779d5..73f227e 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh index b277658..346f3f4 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/20_0multi_family_expert.sh @@ -1,8 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh index 855084b..9f0886f 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/24_0family_mandatory_condition.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh index 1963603..a6f6a50 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -5,10 +5,10 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ““ variable:  โ”ฃโ”โ” null  โ”—โ”โ” null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f18a9d6..d494295 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh index bf7f466..e2bc9d7 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_2family_dynamic_outside_calc_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ newvar: +โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh index 3fc4384..7d7ebdb 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_hidden_suffix.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ dynval1 - โ”ฃโ”โ” ๐Ÿ““ var: + โ”ฃโ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_read_write_mandatory_secrets_errors/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_0version_underscore.sh b/tests/results/test_read_write_secrets/00_0version_underscore.sh index a192596..393c7ec 100644 --- a/tests/results/test_read_write_secrets/00_0version_underscore.sh +++ b/tests/results/test_read_write_secrets/00_0version_underscore.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ version: +โ”—โ”โ” ๐Ÿ““ version: null diff --git a/tests/results/test_read_write_secrets/00_1empty_variable.sh b/tests/results/test_read_write_secrets/00_1empty_variable.sh index 79fbd8d..350203f 100644 --- a/tests/results/test_read_write_secrets/00_1empty_variable.sh +++ b/tests/results/test_read_write_secrets/00_1empty_variable.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ empty: +โ”—โ”โ” ๐Ÿ““ empty: null diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.sh +++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh index 5b67013..91f8d05 100644 --- a/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh +++ b/tests/results/test_read_write_secrets/00_2default_calculated_variable_description_multi_line.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”—โ”โ” ๐Ÿ““ var3: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write_secrets/00_4load_subfolder.sh b/tests/results/test_read_write_secrets/00_4load_subfolder.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_4load_subfolder.sh +++ b/tests/results/test_read_write_secrets/00_4load_subfolder.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_6choice.sh b/tests/results/test_read_write_secrets/00_6choice.sh index 3697e52..f41dcad 100644 --- a/tests/results/test_read_write_secrets/00_6choice.sh +++ b/tests/results/test_read_write_secrets/00_6choice.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”ฃโ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”ฃโ”โ” ๐Ÿ““ var4: null โ”ฃโ”โ” ๐Ÿ““ var5: a โ”—โ”โ” ๐Ÿ““ var6: 1 diff --git a/tests/results/test_read_write_secrets/00_6choice_link.sh b/tests/results/test_read_write_secrets/00_6choice_link.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_6choice_link.sh +++ b/tests/results/test_read_write_secrets/00_6choice_link.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_6custom.sh b/tests/results/test_read_write_secrets/00_6custom.sh index 190faa1..261194a 100644 --- a/tests/results/test_read_write_secrets/00_6custom.sh +++ b/tests/results/test_read_write_secrets/00_6custom.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ custom1: +โ”ฃโ”โ” ๐Ÿ““ custom1: null โ”—โ”โ” ๐Ÿ““ custom2: value diff --git a/tests/results/test_read_write_secrets/00_6port.sh b/tests/results/test_read_write_secrets/00_6port.sh index 8c3a23b..e0bfb7f 100644 --- a/tests/results/test_read_write_secrets/00_6port.sh +++ b/tests/results/test_read_write_secrets/00_6port.sh @@ -2,6 +2,6 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ variable1: +โ”ฃโ”โ” ๐Ÿ““ variable1: null โ”ฃโ”โ” ๐Ÿ““ variable2: 8080 โ”—โ”โ” ๐Ÿ““ variable3: 8080 diff --git a/tests/results/test_read_write_secrets/00_6secret.sh b/tests/results/test_read_write_secrets/00_6secret.sh index c8bf607..ba398c4 100644 --- a/tests/results/test_read_write_secrets/00_6secret.sh +++ b/tests/results/test_read_write_secrets/00_6secret.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ secret1: +โ”ฃโ”โ” ๐Ÿ““ secret1: null โ”—โ”โ” ๐Ÿ““ secret2: ********** diff --git a/tests/results/test_read_write_secrets/00_6secret_param.sh b/tests/results/test_read_write_secrets/00_6secret_param.sh index a130e97..1c98dd8 100644 --- a/tests/results/test_read_write_secrets/00_6secret_param.sh +++ b/tests/results/test_read_write_secrets/00_6secret_param.sh @@ -2,6 +2,6 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ secret1: +โ”ฃโ”โ” ๐Ÿ““ secret1: null โ”ฃโ”โ” ๐Ÿ““ secret2: ********** โ”—โ”โ” ๐Ÿ““ secret3: ********** diff --git a/tests/results/test_read_write_secrets/00_6string.sh b/tests/results/test_read_write_secrets/00_6string.sh index 94d98fa..be8c786 100644 --- a/tests/results/test_read_write_secrets/00_6string.sh +++ b/tests/results/test_read_write_secrets/00_6string.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var2: -โ”ฃโ”โ” ๐Ÿ““ var3: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null โ”ฃโ”โ” ๐Ÿ““ var4: value โ”ฃโ”โ” ๐Ÿ““ var5: value โ”ฃโ”โ” ๐Ÿ““ var6: value diff --git a/tests/results/test_read_write_secrets/00_7help.sh b/tests/results/test_read_write_secrets/00_7help.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_7help.sh +++ b/tests/results/test_read_write_secrets/00_7help.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_7help_quote.sh b/tests/results/test_read_write_secrets/00_7help_quote.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_7help_quote.sh +++ b/tests/results/test_read_write_secrets/00_7help_quote.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_7help_sup.sh b/tests/results/test_read_write_secrets/00_7help_sup.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_7help_sup.sh +++ b/tests/results/test_read_write_secrets/00_7help_sup.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_8calculation_information.sh b/tests/results/test_read_write_secrets/00_8calculation_information.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/00_8calculation_information.sh +++ b/tests/results/test_read_write_secrets/00_8calculation_information.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/00_8test.sh b/tests/results/test_read_write_secrets/00_8test.sh index 94ff65b..e1e42c9 100644 --- a/tests/results/test_read_write_secrets/00_8test.sh +++ b/tests/results/test_read_write_secrets/00_8test.sh @@ -2,9 +2,9 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ““ var2: value -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”ฃโ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”ฃโ”โ” ๐Ÿ““ var4: null โ”ฃโ”โ” ๐Ÿ““ var5: true โ”—โ”โ” ๐Ÿ““ var6: diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information.sh b/tests/results/test_read_write_secrets/00_9default_calculation_information.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write_secrets/00_9default_calculation_information.sh +++ b/tests/results/test_read_write_secrets/00_9default_calculation_information.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh +++ b/tests/results/test_read_write_secrets/00_9default_calculation_information_other_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh b/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh +++ b/tests/results/test_read_write_secrets/00_9default_information_other_variable.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/00_9default_information_other_variable2.sh b/tests/results/test_read_write_secrets/00_9default_information_other_variable2.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/00_9default_information_other_variable2.sh +++ b/tests/results/test_read_write_secrets/00_9default_information_other_variable2.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh b/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh index 9683651..2b134b7 100644 --- a/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh +++ b/tests/results/test_read_write_secrets/01_9choice_variable_multi.sh @@ -6,4 +6,4 @@ Variables: โ”ƒ โ”ฃโ”โ” a โ”ƒ โ”ฃโ”โ” b โ”ƒ โ”—โ”โ” c -โ”—โ”โ” ๐Ÿ““ variable2: +โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write_secrets/02_0tags.sh b/tests/results/test_read_write_secrets/02_0tags.sh index f18a9d6..cebc196 100644 --- a/tests/results/test_read_write_secrets/02_0tags.sh +++ b/tests/results/test_read_write_secrets/02_0tags.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.sh index b83c535..75f226a 100644 --- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_4.sh @@ -2,5 +2,5 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var2: +โ”ฃโ”โ” ๐Ÿ““ var2: null โ”—โ”โ” ๐Ÿ““ var3: value diff --git a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.sh index a8603b5..54112a6 100644 --- a/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_read_write_secrets/04_1default_calculation_hidden_6.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: value -โ”—โ”โ” ๐Ÿ““ var3: +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.sh index d7a852b..2d64455 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_boolean.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ variable1: +โ”—โ”โ” ๐Ÿ““ variable1: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.sh index 98becf1..6375e32 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_optional_default.sh @@ -3,6 +3,6 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ฃโ”โ” ๐Ÿ““ var3: -โ”—โ”โ” ๐Ÿ““ var4: +โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh index e896114..6bcd950 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh index be64e4e..c40ba99 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable4.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: yes -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable5.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable6.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.sh index e896114..6bcd950 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable7.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: false -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.sh +++ b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable9.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/04_5validators.sh b/tests/results/test_read_write_secrets/04_5validators.sh index 096391d..8f8a333 100644 --- a/tests/results/test_read_write_secrets/04_5validators.sh +++ b/tests/results/test_read_write_secrets/04_5validators.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ int: +โ”—โ”โ” ๐Ÿ““ int: null diff --git a/tests/results/test_read_write_secrets/16_0redefine_description.sh b/tests/results/test_read_write_secrets/16_0redefine_description.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write_secrets/16_0redefine_description.sh +++ b/tests/results/test_read_write_secrets/16_0redefine_description.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/16_3family_empty_at_ends.sh b/tests/results/test_read_write_secrets/16_3family_empty_at_ends.sh index 47dc820..e419ea1 100644 --- a/tests/results/test_read_write_secrets/16_3family_empty_at_ends.sh +++ b/tests/results/test_read_write_secrets/16_3family_empty_at_ends.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ var1: + โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_choice.sh b/tests/results/test_read_write_secrets/16_5redefine_choice.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/16_5redefine_choice.sh +++ b/tests/results/test_read_write_secrets/16_5redefine_choice.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh index 89a16c7..f7cb48e 100644 --- a/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh +++ b/tests/results/test_read_write_secrets/16_5redefine_default_calculation.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_family.sh b/tests/results/test_read_write_secrets/16_5redefine_family.sh index 514d892..398e93a 100644 --- a/tests/results/test_read_write_secrets/16_5redefine_family.sh +++ b/tests/results/test_read_write_secrets/16_5redefine_family.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_help.sh b/tests/results/test_read_write_secrets/16_5redefine_help.sh index 514d892..398e93a 100644 --- a/tests/results/test_read_write_secrets/16_5redefine_help.sh +++ b/tests/results/test_read_write_secrets/16_5redefine_help.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ variable: + โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh index ac3324c..33b1ccb 100644 --- a/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh +++ b/tests/results/test_read_write_secrets/16_5redefine_remove_disable_calculation.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ variable: +โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/16_5test_redefine.sh b/tests/results/test_read_write_secrets/16_5test_redefine.sh index 0ab7282..cfdf5ef 100644 --- a/tests/results/test_read_write_secrets/16_5test_redefine.sh +++ b/tests/results/test_read_write_secrets/16_5test_redefine.sh @@ -4,4 +4,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: no โ”ฃโ”โ” ๐Ÿ““ var2: non -โ”—โ”โ” ๐Ÿ““ var3: +โ”—โ”โ” ๐Ÿ““ var3: null diff --git a/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh b/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh index 8c3a058..3bb0b1c 100644 --- a/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh +++ b/tests/results/test_read_write_secrets/16_6exists_redefine_family.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ family1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: +โ”ƒ โ”—โ”โ” ๐Ÿ““ variable1: null โ”—โ”โ” ๐Ÿ“‚ family2 - โ”—โ”โ” ๐Ÿ““ variable2: + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write_secrets/16exists_exists.sh b/tests/results/test_read_write_secrets/16exists_exists.sh index 2e31ad6..4bdf418 100644 --- a/tests/results/test_read_write_secrets/16exists_exists.sh +++ b/tests/results/test_read_write_secrets/16exists_exists.sh @@ -1,5 +1,5 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/20_0family_append.sh b/tests/results/test_read_write_secrets/20_0family_append.sh index eef8d88..20ad4ed 100644 --- a/tests/results/test_read_write_secrets/20_0family_append.sh +++ b/tests/results/test_read_write_secrets/20_0family_append.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family.sh b/tests/results/test_read_write_secrets/20_0multi_family.sh index 10779d5..73f227e 100644 --- a/tests/results/test_read_write_secrets/20_0multi_family.sh +++ b/tests/results/test_read_write_secrets/20_0multi_family.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_basic.sh b/tests/results/test_read_write_secrets/20_0multi_family_basic.sh index 10779d5..73f227e 100644 --- a/tests/results/test_read_write_secrets/20_0multi_family_basic.sh +++ b/tests/results/test_read_write_secrets/20_0multi_family_basic.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_expert.sh b/tests/results/test_read_write_secrets/20_0multi_family_expert.sh index b277658..346f3f4 100644 --- a/tests/results/test_read_write_secrets/20_0multi_family_expert.sh +++ b/tests/results/test_read_write_secrets/20_0multi_family_expert.sh @@ -1,8 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Undocumented  โ”‚ -โ”‚ variable โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Undocumented variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ variable: +  โ”—โ”โ” ๐Ÿ““ variable: null diff --git a/tests/results/test_read_write_secrets/20_0multi_family_order.sh b/tests/results/test_read_write_secrets/20_0multi_family_order.sh index 59fceb5..bb8b026 100644 --- a/tests/results/test_read_write_secrets/20_0multi_family_order.sh +++ b/tests/results/test_read_write_secrets/20_0multi_family_order.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ variable: +โ”ฃโ”โ” ๐Ÿ““ variable: null โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ variable1: + โ”ฃโ”โ” ๐Ÿ““ variable1: null  โ”ฃโ”โ” ๐Ÿ“‚ subfamily - โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: - โ”—โ”โ” ๐Ÿ““ variable2: + โ”ƒ โ”—โ”โ” ๐Ÿ““ variable: null + โ”—โ”โ” ๐Ÿ““ variable2: null diff --git a/tests/results/test_read_write_secrets/20_9default_information_parent.sh b/tests/results/test_read_write_secrets/20_9default_information_parent.sh index eef8d88..20ad4ed 100644 --- a/tests/results/test_read_write_secrets/20_9default_information_parent.sh +++ b/tests/results/test_read_write_secrets/20_9default_information_parent.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/20_9family_absolute.sh b/tests/results/test_read_write_secrets/20_9family_absolute.sh index e92e6c2..214007e 100644 --- a/tests/results/test_read_write_secrets/20_9family_absolute.sh +++ b/tests/results/test_read_write_secrets/20_9family_absolute.sh @@ -2,15 +2,15 @@ โ”‚ Variable Default value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ“‚ family -โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var2: +โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var2: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ subfamily โ”ƒ  โ”—โ”โ” ๐Ÿ““ variable: โ”ƒ   โ”ฃโ”โ” null โ”ƒ   โ”—โ”โ” null โ”—โ”โ” ๐Ÿ“‚ family2 - โ”ฃโ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var2: null  โ”ฃโ”โ” ๐Ÿ““ var3: string4  โ”—โ”โ” ๐Ÿ“‚ subfamily   โ”—โ”โ” ๐Ÿ““ variable: diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh index cfce95a..e348151 100644 --- a/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh +++ b/tests/results/test_read_write_secrets/24_0family_hidden_condition_sub_family.sh @@ -5,4 +5,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh index 3228e1c..71f5d92 100644 --- a/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh +++ b/tests/results/test_read_write_secrets/24_0family_hidden_param_condition_sub_family.sh @@ -5,4 +5,4 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ sub_family -  โ”—โ”โ” ๐Ÿ““ var1: +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh index 855084b..9f0886f 100644 --- a/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh +++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: no -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh index f8bcaee..8b2e3af 100644 --- a/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh +++ b/tests/results/test_read_write_secrets/24_0family_mandatory_condition_variable.sh @@ -3,4 +3,4 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true -โ”—โ”โ” ๐Ÿ““ var: +โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh b/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh index 4e54b7f..3cd2906 100644 --- a/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh +++ b/tests/results/test_read_write_secrets/24_7validators_variable_optional.sh @@ -3,5 +3,5 @@ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ general - โ”ฃโ”โ” ๐Ÿ““ int: + โ”ฃโ”โ” ๐Ÿ““ int: null  โ”—โ”โ” ๐Ÿ““ int2: 1 diff --git a/tests/results/test_read_write_secrets/40_0leadership_reduce.sh b/tests/results/test_read_write_secrets/40_0leadership_reduce.sh index 3f55e25..e5fdf17 100644 --- a/tests/results/test_read_write_secrets/40_0leadership_reduce.sh +++ b/tests/results/test_read_write_secrets/40_0leadership_reduce.sh @@ -5,10 +5,10 @@ Variables: โ”—โ”โ” ๐Ÿ“‚ leadership  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_1 - โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value_2 - โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: + โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null  โ”—โ”โ” ๐Ÿ“‚ leader   โ”ฃโ”โ” ๐Ÿ““ leader: value_3 -  โ”—โ”โ” ๐Ÿ““ follower: +  โ”—โ”โ” ๐Ÿ““ follower: null diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh index 1963603..a6f6a50 100644 --- a/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh @@ -5,10 +5,10 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: a -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: b -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ““ variable:  โ”ฃโ”โ” null  โ”—โ”โ” null diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh index 4c6ef36..3ab9831 100644 --- a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower.sh @@ -5,14 +5,14 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership_1 โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ“‚ leadership_2  โ”ฃโ”โ” ๐Ÿ“‚ leader - โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: + โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: null  โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: val  โ”—โ”โ” ๐Ÿ“‚ leader -  โ”ฃโ”โ” ๐Ÿ““ leader: +  โ”ฃโ”โ” ๐Ÿ““ leader: null   โ”—โ”โ” ๐Ÿ““ follower: val diff --git a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh index e59886c..45dbca5 100644 --- a/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ b/tests/results/test_read_write_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh @@ -5,10 +5,10 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership_1 โ”ƒ โ”ฃโ”โ” ๐Ÿ“‚ leader โ”ƒ โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 -โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ โ”ƒ โ”—โ”โ” ๐Ÿ““ follower: null โ”ƒ โ”—โ”โ” ๐Ÿ“‚ leader โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ leader: value2 -โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ follower: null โ”—โ”โ” ๐Ÿ“‚ leadership_2  โ”ฃโ”โ” ๐Ÿ“‚ leader  โ”ƒ โ”ฃโ”โ” ๐Ÿ““ leader: value1 diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic.sh b/tests/results/test_read_write_secrets/60_0family_dynamic.sh index 50ad329..a3fcd1b 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh index 87de137..228bc6f 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_1_1.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: +โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ vardyn: + โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh index 50ad329..a3fcd1b 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_no_description.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.sh index d82f82b..794c6a5 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_source_hidden.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh index d82f82b..794c6a5 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_static.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.sh index 4994ac7..ae19356 100644 --- a/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.sh +++ b/tests/results/test_read_write_secrets/60_0family_dynamic_upper_char.sh @@ -6,6 +6,6 @@ Variables: โ”ƒ โ”ฃโ”โ” Val1 โ”ƒ โ”—โ”โ” VAL2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh index b9be1f1..c8467ef 100644 --- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group.sh @@ -7,8 +7,8 @@ Variables: โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family -โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family -โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh index f18a9d6..d494295 100644 --- a/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh index bf7f466..e2bc9d7 100644 --- a/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh +++ b/tests/results/test_read_write_secrets/60_2family_dynamic_outside_calc_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ newvar: +โ”—โ”โ” ๐Ÿ““ newvar: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh index 516f591..06e4cea 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_suffix_disabled.sh @@ -1,7 +1,7 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ var: + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh index 91824e9..8a18a9a 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable.sh @@ -6,7 +6,7 @@ Variables: โ”ƒ โ”ฃโ”โ” val1 โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh index 35d13dc..7d293b2 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled.sh @@ -1,10 +1,10 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: -โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”ฃโ”โ” ๐Ÿ““ var1: null +โ”ƒ โ”—โ”โ” ๐Ÿ““ var2: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ฃโ”โ” ๐Ÿ““ var1: - โ”—โ”โ” ๐Ÿ““ var2: + โ”ฃโ”โ” ๐Ÿ““ var1: null + โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh index b1d3f12..8e87373 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh @@ -1,9 +1,9 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null โ”ฃโ”โ” ๐Ÿ“‚ dynval2 -โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”ƒ โ”—โ”โ” ๐Ÿ““ var1: null +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh index f18a9d6..d494295 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_variable_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh index 3fc4384..7d7ebdb 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,8 +1,8 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ dynval1 - โ”ฃโ”โ” ๐Ÿ““ var: + โ”ฃโ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh index 682fff4..d06d16c 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh @@ -1,6 +1,6 @@ -โ•ญโ”€ Caption โ”€โ•ฎ -โ”‚ Variabโ€ฆ โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”—โ”โ” ๐Ÿ““ var2: +โ”—โ”โ” ๐Ÿ““ var2: null diff --git a/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh index 8de12e6..2e06944 100644 --- a/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh +++ b/tests/results/test_read_write_secrets/60_9family_dynamic_calc_both.sh @@ -4,6 +4,6 @@ Variables: โ”ฃโ”โ” ๐Ÿ““ var: val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 -โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: +โ”ƒ โ”—โ”โ” ๐Ÿ““ vardyn: null โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”—โ”โ” ๐Ÿ““ vardyn: + โ”—โ”โ” ๐Ÿ““ vardyn: null diff --git a/tests/results/test_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_secrets/00_2default_calculated_params_permissive.sh index 27e9bc5..78637d2 100644 --- a/tests/results/test_secrets/00_2default_calculated_params_permissive.sh +++ b/tests/results/test_secrets/00_2default_calculated_params_permissive.sh @@ -6,6 +6,6 @@ Variables: โ”ฃโ”โ” ๐Ÿ“‚ leadership โ”ƒ โ”—โ”โ” ๐Ÿ“‚ var1 -โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ—€ loaded from rougail-test (โณ a_value) +โ”ƒ  โ”ฃโ”โ” ๐Ÿ““ var1: a_value โ”ƒ  โ”—โ”โ” ๐Ÿ““ var2: a_value โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ a_value) diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_secrets/04_1default_calculation_hidden_3.sh index 6db0d80..b6664dd 100644 --- a/tests/results/test_secrets/04_1default_calculation_hidden_3.sh +++ b/tests/results/test_secrets/04_1default_calculation_hidden_3.sh @@ -1,7 +1,8 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) +โ”ฃโ”โ” ๐Ÿ““ var1: value โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_secrets/04_1default_calculation_hidden_4.sh index a4d79e3..78f990a 100644 --- a/tests/results/test_secrets/04_1default_calculation_hidden_4.sh +++ b/tests/results/test_secrets/04_1default_calculation_hidden_4.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ var1: value โ—€ loaded from rougail-test (โณ value) +โ”ฃโ”โ” ๐Ÿ““ var1: value โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test (โณ value) diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_secrets/04_1default_calculation_hidden_5.sh index c61b1d3..727fa01 100644 --- a/tests/results/test_secrets/04_1default_calculation_hidden_5.sh +++ b/tests/results/test_secrets/04_1default_calculation_hidden_5.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) -โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) +โ”ฃโ”โ” ๐Ÿ““ var2: string1 โ”—โ”โ” ๐Ÿ““ var3: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_secrets/04_1default_calculation_hidden_6.sh index bdec7ff..56c7863 100644 --- a/tests/results/test_secrets/04_1default_calculation_hidden_6.sh +++ b/tests/results/test_secrets/04_1default_calculation_hidden_6.sh @@ -1,7 +1,8 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test (โณ value) -โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test (โณ string1) +โ”—โ”โ” ๐Ÿ““ var2: string1 diff --git a/tests/results/test_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_secrets/04_5disabled_calculation_optional.sh index 8eb68b8..0ce399f 100644 --- a/tests/results/test_secrets/04_5disabled_calculation_optional.sh +++ b/tests/results/test_secrets/04_5disabled_calculation_optional.sh @@ -1,8 +1,9 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: string1 โ—€ loaded from rougail-test (โณ no) -โ”ฃโ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +โ”ฃโ”โ” ๐Ÿ““ var1: null โ”—โ”โ” ๐Ÿ““ var2: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_secrets/04_5disabled_calculation_optional_default.sh index fef05a8..fb14389 100644 --- a/tests/results/test_secrets/04_5disabled_calculation_optional_default.sh +++ b/tests/results/test_secrets/04_5disabled_calculation_optional_default.sh @@ -1,10 +1,11 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ false) โ”ฃโ”โ” ๐Ÿ““ var1: string1 โ—€ loaded from rougail-test -โ”ฃโ”โ” ๐Ÿ““ var2: null โ—€ loaded from rougail-test -โ”ฃโ”โ” ๐Ÿ““ var3: null โ—€ loaded from rougail-test -โ”—โ”โ” ๐Ÿ““ var4: null โ—€ loaded from rougail-test +โ”ฃโ”โ” ๐Ÿ““ var2: null +โ”ฃโ”โ” ๐Ÿ““ var3: null +โ”—โ”โ” ๐Ÿ““ var4: null diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_secrets/04_5disabled_calculation_variable5.sh index adfee1b..9e54189 100644 --- a/tests/results/test_secrets/04_5disabled_calculation_variable5.sh +++ b/tests/results/test_secrets/04_5disabled_calculation_variable5.sh @@ -1,7 +1,7 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”ฃโ”โ” ๐Ÿ““ condition: false โ—€ loaded from rougail-test (โณ false) +โ”ฃโ”โ” ๐Ÿ““ condition: false โ”—โ”โ” ๐Ÿ““ variable: string1 โ—€ loaded from rougail-test diff --git a/tests/results/test_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_secrets/04_5disabled_calculation_variable8.sh index f3ec757..48adb68 100644 --- a/tests/results/test_secrets/04_5disabled_calculation_variable8.sh +++ b/tests/results/test_secrets/04_5disabled_calculation_variable8.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) +โ”—โ”โ” ๐Ÿ““ condition: true diff --git a/tests/results/test_secrets/16_5exists_redefine.sh b/tests/results/test_secrets/16_5exists_redefine.sh index dd5cdfd..33b8452 100644 --- a/tests/results/test_secrets/16_5exists_redefine.sh +++ b/tests/results/test_secrets/16_5exists_redefine.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ var1: yes โ—€ loaded from rougail-test (โณ yes) +โ”—โ”โ” ๐Ÿ““ var1: yes diff --git a/tests/results/test_secrets/16_5redefine_hidden.sh b/tests/results/test_secrets/16_5redefine_hidden.sh index 1f1e65d..2c35755 100644 --- a/tests/results/test_secrets/16_5redefine_hidden.sh +++ b/tests/results/test_secrets/16_5redefine_hidden.sh @@ -1,6 +1,5 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ”‚ (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: -โ”—โ”โ” ๐Ÿ““ variable: no โ—€ loaded from rougail-test (โณ no) +โ”—โ”โ” ๐Ÿ““ variable: no diff --git a/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh index cd12f51..877425c 100644 --- a/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ b/tests/results/test_secrets/24_0family_hidden_condition_variable_sub_family.sh @@ -1,9 +1,10 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ”‚ (โณ Original default value) โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ condition: true โ—€ loaded from rougail-test (โณ true) โ”—โ”โ” ๐Ÿ“‚ family  โ”—โ”โ” ๐Ÿ“‚ subfamily -  โ”—โ”โ” ๐Ÿ““ var1: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var1: null diff --git a/tests/results/test_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_secrets/60_0family_dynamic_source_hidden.sh index d93e22c..2f6332a 100644 --- a/tests/results/test_secrets/60_0family_dynamic_source_hidden.sh +++ b/tests/results/test_secrets/60_0family_dynamic_source_hidden.sh @@ -1,11 +1,11 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable (โณ Original default value) โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ““ var: -โ”ƒ โ”ฃโ”โ” val1 โ—€ loaded from rougail-test (โณ val1) -โ”ƒ โ”—โ”โ” val2 โ—€ loaded from rougail-test (โณ val2) +โ”ƒ โ”ฃโ”โ” val1 +โ”ƒ โ”—โ”โ” val2 โ”ฃโ”โ” ๐Ÿ“‚ dynval1 โ”ƒ โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ“‚ dynval2 diff --git a/tests/results/test_secrets/60_0family_hidden.sh b/tests/results/test_secrets/60_0family_hidden.sh index c214b65..8d3d440 100644 --- a/tests/results/test_secrets/60_0family_hidden.sh +++ b/tests/results/test_secrets/60_0family_hidden.sh @@ -1,6 +1,6 @@ -โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Unmodifiable variable Modified value โ”‚ -โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ +โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ +โ”‚ Unmodifiable variable Default value โ”‚ +โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”—โ”โ” ๐Ÿ“‚ family - โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test + โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh index 07ff83c..dee3156 100644 --- a/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh +++ b/tests/results/test_secrets/60_5family_dynamic_hidden_suffix.sh @@ -1,6 +1,6 @@ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Caption โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ -โ”‚ Variable Modified value โ”‚ -โ”‚ Unmodifiable variable โ”‚ +โ”‚ Variable Default value โ”‚ +โ”‚ Unmodifiable variable Modified value โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ Variables: โ”ฃโ”โ” ๐Ÿ“‚ dynval1 @@ -8,6 +8,6 @@ Variables: โ”ƒ โ”—โ”โ” ๐Ÿ“‚ family โ”ƒ  โ”—โ”โ” ๐Ÿ““ var: string1 โ—€ loaded from rougail-test โ”—โ”โ” ๐Ÿ“‚ dynval2 - โ”ฃโ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test + โ”ฃโ”โ” ๐Ÿ““ var: null  โ”—โ”โ” ๐Ÿ“‚ family -  โ”—โ”โ” ๐Ÿ““ var: null โ—€ loaded from rougail-test +  โ”—โ”โ” ๐Ÿ““ var: null diff --git a/tests/test_load.py b/tests/test_load.py index 83f4531..6bc3de9 100644 --- a/tests/test_load.py +++ b/tests/test_load.py @@ -16,7 +16,7 @@ excludes = [] #] test_ok = get_structures_list(excludes) -# test_ok = [Path('../rougail-tests/structures/40_8calculation_boolean')] +# test_ok = [Path('../rougail-tests/structures/00_2default_calculated_variable')] def idfn(fixture_value):