diff --git a/src/rougail/output_display/config.py b/src/rougail/output_display/config.py index a1ee5bec..04ecb36a 100644 --- a/src/rougail/output_display/config.py +++ b/src/rougail/output_display/config.py @@ -102,18 +102,6 @@ display: options += f""" show_secrets: false # {_('Show secrets instead of obscuring them')} - mandatory: - description: {_('test mandatories variables before display in display')} - type: boolean - default: - jinja: |- - {{% if cli.read_write is defined and cli.read_write == true %}} - false - {{% else %}} - true - {{% endif %}} - description: {_('do not test if "cli.read_write" is true')} - console: description: {_("Specific configuration for console output")} disabled: diff --git a/src/rougail/output_display/display.py b/src/rougail/output_display/display.py index fe0c4e1c..6d991009 100644 --- a/src/rougail/output_display/display.py +++ b/src/rougail/output_display/display.py @@ -67,13 +67,6 @@ class RougailOutputDisplay: self.yaml.indent(mapping=2, sequence=4, offset=2) def run(self) -> str: - self.is_mandatory = self.rougailconfig["display.mandatory"] - if self.is_mandatory: - ori_properties = self.true_config.property.exportation() - self.true_config.property.read_write() - if not self.user_data_errors and not self.errors: - self.mandatories() - self.true_config.property.importation(ori_properties) output_format = self.rougailconfig["display.output_format"] output = OutPuts().get()[output_format](self.rougailconfig) warnings = self.user_data_warnings + self.warnings @@ -110,58 +103,6 @@ class RougailOutputDisplay: status, ret = self.run() print(ret) return status -# -# def exporter(self) -> bool: -# if self.is_mandatory: -# ori_properties = self.config.property.exportation() -# self.config.property.read_write() -# if not self.user_data_errors and not self.errors: -# self.mandatories() -# self.config.property.importation(ori_properties) -# warnings = self.user_data_warnings + self.warnings -# if warnings: -# self.output.display_warnings(warnings) -# -# errors = self.user_data_errors + self.errors -# if errors: -# self.output.display_errors(errors) -# return False -# self.output.out = [] -# if self.output.has_variable(): -# self.output.header() -# self.output.end() -# return True - - def mandatories(self) -> None: - try: - mandatories = self.config.value.mandatory() - except (ConfigError, PropertiesOptionError, ValueError) as err: - try: - subconfig = err.subconfig - except AttributeError: - subconfig = None - if subconfig: - err.prefix = "" - self.errors.append({str(err): subconfig}) - else: - self.errors.append(str(err)) - else: - self.populate_mandatories(mandatories) - - def populate_mandatories(self, mandatories: list) -> None: - for option in mandatories: - try: - option.value.get() - except PropertiesOptionError: - self.errors.append( - { - _( - "mandatory variable but is inaccessible and has no value" - ): option._subconfig, - } - ) - else: - self.errors.append({_("mandatory variable but has no value"): option._subconfig}) class Node: diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_1535.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_1535.cpython-313.pyc new file mode 100644 index 00000000..4e9698b5 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_1535.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2084.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2084.cpython-313.pyc new file mode 100644 index 00000000..f0da3a84 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2084.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2090.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2090.cpython-313.pyc new file mode 100644 index 00000000..d6edefef Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_2090.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_3025.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_3025.cpython-313.pyc new file mode 100644 index 00000000..27088135 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_3025.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4354.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4354.cpython-313.pyc new file mode 100644 index 00000000..a945c9c5 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4354.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4390.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4390.cpython-313.pyc new file mode 100644 index 00000000..7a499e6c Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4390.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4395.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4395.cpython-313.pyc new file mode 100644 index 00000000..312533ba Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.console.py@neomake_21953_4395.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_45.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_45.cpython-313.pyc new file mode 100644 index 00000000..2859686c Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_45.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_47.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_47.cpython-313.pyc new file mode 100644 index 00000000..12b551c2 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_1435662_47.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1559.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1559.cpython-313.pyc new file mode 100644 index 00000000..9ef20c87 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1559.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1561.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1561.cpython-313.pyc new file mode 100644 index 00000000..d9538037 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1561.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1935.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1935.cpython-313.pyc new file mode 100644 index 00000000..c6e9b7a2 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_1935.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2070.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2070.cpython-313.pyc new file mode 100644 index 00000000..c18619bd Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2070.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2098.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2098.cpython-313.pyc new file mode 100644 index 00000000..d6d9cc0a Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2098.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2165.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2165.cpython-313.pyc new file mode 100644 index 00000000..b4de647e Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_2165.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_4393.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_4393.cpython-313.pyc new file mode 100644 index 00000000..0e6a70e4 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_21953_4393.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_133.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_133.cpython-313.pyc new file mode 100644 index 00000000..89850da8 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_133.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_136.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_136.cpython-313.pyc new file mode 100644 index 00000000..1eb51a65 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_136.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_63.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_63.cpython-313.pyc new file mode 100644 index 00000000..4fd61140 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_63.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_78.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_78.cpython-313.pyc new file mode 100644 index 00000000..d590f066 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_78.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_79.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_79.cpython-313.pyc new file mode 100644 index 00000000..1b289531 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_616290_79.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_131.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_131.cpython-313.pyc new file mode 100644 index 00000000..be21c2fb Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_131.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_78.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_78.cpython-313.pyc new file mode 100644 index 00000000..0a1d727a Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_78.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_88.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_88.cpython-313.pyc new file mode 100644 index 00000000..9524ac99 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_88.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_92.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_92.cpython-313.pyc new file mode 100644 index 00000000..a82360da Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/.github.py@neomake_637961_92.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/console.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/console.cpython-313.pyc new file mode 100644 index 00000000..96602096 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/console.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/console.cpython-314.pyc b/src/rougail/output_display/output/__pycache__/console.cpython-314.pyc new file mode 100644 index 00000000..b9b41904 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/console.cpython-314.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/github.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/github.cpython-313.pyc new file mode 100644 index 00000000..fd55d65b Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/github.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/github.cpython-314.pyc b/src/rougail/output_display/output/__pycache__/github.cpython-314.pyc new file mode 100644 index 00000000..aa2a52f5 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/github.cpython-314.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/gitlab.cpython-313.pyc b/src/rougail/output_display/output/__pycache__/gitlab.cpython-313.pyc new file mode 100644 index 00000000..cdf55572 Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/gitlab.cpython-313.pyc differ diff --git a/src/rougail/output_display/output/__pycache__/gitlab.cpython-314.pyc b/src/rougail/output_display/output/__pycache__/gitlab.cpython-314.pyc new file mode 100644 index 00000000..8ca07fdb Binary files /dev/null and b/src/rougail/output_display/output/__pycache__/gitlab.cpython-314.pyc differ diff --git a/src/rougail/output_display/output/console.py b/src/rougail/output_display/output/console.py index 721bb828..60bb76be 100644 --- a/src/rougail/output_display/output/console.py +++ b/src/rougail/output_display/output/console.py @@ -72,20 +72,9 @@ class OutputFamily(CommonOutput): def layers(self): layers = Table.grid(padding=1, collapse_padding=True) - max_len = 0 - for datas in self.layer_datas.values(): - for data in datas.values(): - max_len = max(max_len, len(data)) - display_layers = ["" for i in range(max_len)] - for datas in self.layer_datas.values(): - for data in datas.values(): - last_index = len(data) - 1 - for idx in range(max_len): - if last_index < idx: - display_layers[idx] += "\n" - else: - display_layers[idx] += data[idx] + "\n" - layers.add_row(*[layer[:-1] for layer in display_layers]) + first_char = "• " + display_layers = [first_char + data for data in self.layer_datas] + layers.add_row("\n".join(display_layers)) return Panel.fit(layers, title=_("Layers")) def error_header(self): diff --git a/src/rougail/output_display/output/github.py b/src/rougail/output_display/output/github.py index b267ab20..a1f1e6f0 100644 --- a/src/rougail/output_display/output/github.py +++ b/src/rougail/output_display/output/github.py @@ -59,9 +59,9 @@ class OutputFamily(CommonOutput): caption += "> - " + "\n> - ".join(values) + "\n" if self.layer_datas: layers = "\n" + self.title(_("Layers:")) - for datas in self.layer_datas.values(): - for data in datas.values(): - layers += f"> {" ".join(data)}\\\n" + first_char = "> - " + display_layers = [first_char + data for data in self.layer_datas] + layers += "\n".join(display_layers) else: layers = "" return caption + layers + "\n" @@ -106,7 +106,7 @@ class OutputFamily(CommonOutput): else: color = self.warning_color icon = self.warning_icon - msg = f"[{color}]:{icon}: {msg[0]}[/{color}]" + msg = f":{icon}: {msg[0]}" tree.append("> " + " " * (level - 1) * 2 + "- " + msg) return tree diff --git a/tests/errors-results/display.gitlab.md b/tests/errors-results/display.gitlab.md index 451687d4..248a894a 100644 --- a/tests/errors-results/display.gitlab.md +++ b/tests/errors-results/display.gitlab.md @@ -1,3 +1,3 @@ > [!CAUTION] > -> - please set a value: :stop_sign: [- mandatory variable but is inaccessible and has no value -] +> - please set a value: :stop_sign: [- mandatory variable but is inaccessible and has no value or has null in value -] diff --git a/tests/errors-results/display.md b/tests/errors-results/display.md index 42a0851a..64887840 100644 --- a/tests/errors-results/display.md +++ b/tests/errors-results/display.md @@ -1,3 +1,3 @@ > [!CAUTION] > -> - please set a value: :stop_sign: mandatory variable but is inaccessible and has no value +> - please set a value: :stop_sign: mandatory variable but is inaccessible and has no value or has null in value diff --git a/tests/errors-results/display.sh b/tests/errors-results/display.sh index 1193cc79..64facc5a 100644 --- a/tests/errors-results/display.sh +++ b/tests/errors-results/display.sh @@ -1,2 +1,2 @@ 🛑 Caution -┗━━ please set a value: 🛑 mandatory variable but is inaccessible and has no value +┗━━ please set a value: 🛑 mandatory variable but is inaccessible and has no value or has null in value diff --git a/tests/errors2-results/display.gitlab.md b/tests/errors2-results/display.gitlab.md index 44c01447..3daf7da8 100644 --- a/tests/errors2-results/display.gitlab.md +++ b/tests/errors2-results/display.gitlab.md @@ -2,4 +2,4 @@ > > - family1 > - family2 -> - please set a value: :stop_sign: [- mandatory variable but is inaccessible and has no value -] +> - please set a value: :stop_sign: [- mandatory variable but is inaccessible and has no value or has null in value -] diff --git a/tests/errors2-results/display.md b/tests/errors2-results/display.md index 3149d551..ce72ced4 100644 --- a/tests/errors2-results/display.md +++ b/tests/errors2-results/display.md @@ -2,4 +2,4 @@ > > - family1 > - family2 -> - please set a value: :stop_sign: mandatory variable but is inaccessible and has no value +> - please set a value: :stop_sign: mandatory variable but is inaccessible and has no value or has null in value diff --git a/tests/errors2-results/display.sh b/tests/errors2-results/display.sh index 6e9853f7..8ea6891f 100644 --- a/tests/errors2-results/display.sh +++ b/tests/errors2-results/display.sh @@ -1,4 +1,4 @@ 🛑 Caution ┗━━ family1  ┗━━ family2 -  ┗━━ please set a value: 🛑 mandatory variable but is inaccessible and has no value +  ┗━━ please set a value: 🛑 mandatory variable but is inaccessible and has no value or has null in value diff --git a/tests/errors9-results/display.gitlab.md b/tests/errors9-results/display.gitlab.md index 564c7ab0..15f23cee 100644 --- a/tests/errors9-results/display.gitlab.md +++ b/tests/errors9-results/display.gitlab.md @@ -2,5 +2,9 @@ > > - my family1 > - my family2 -> - my integer: :stop_sign: [- the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data -] -> - my string: :stop_sign: [- the value "3" is an invalid string, it's not a string, it has been loading from fake user data -] +> - my integer +> - :stop_sign: the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data +> - :stop_sign: mandatory variable but has no value +> - my string +> - :stop_sign: the value "3" is an invalid string, it's not a string, it has been loading from fake user data +> - :stop_sign: mandatory variable but has no value diff --git a/tests/errors9-results/display.md b/tests/errors9-results/display.md index 00fa28b7..b029c064 100644 --- a/tests/errors9-results/display.md +++ b/tests/errors9-results/display.md @@ -2,5 +2,9 @@ > > - my family1 > - my family2 -> - my integer: :stop_sign: the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data -> - my string: :stop_sign: the value "3" is an invalid string, it's not a string, it has been loading from fake user data +> - my integer +> - :stop_sign: the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data +> - :stop_sign: mandatory variable but has no value +> - my string +> - :stop_sign: the value "3" is an invalid string, it's not a string, it has been loading from fake user data +> - :stop_sign: mandatory variable but has no value diff --git a/tests/errors9-results/display.sh b/tests/errors9-results/display.sh index aeec7f8b..f878b59b 100644 --- a/tests/errors9-results/display.sh +++ b/tests/errors9-results/display.sh @@ -1,5 +1,9 @@ 🛑 Caution ┗━━ my family1  ┣━━ my family2 - ┃ ┗━━ my integer: 🛑 the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data - ┗━━ my string: 🛑 the value "3" is an invalid string, it's not a string, it has been loading from fake user data + ┃ ┗━━ my integer + ┃  ┣━━ 🛑 the value "not_an_integer" is an invalid integer, it's not an integer, it has been loading from fake user data + ┃  ┗━━ 🛑 mandatory variable but has no value + ┗━━ my string +  ┣━━ 🛑 the value "3" is an invalid string, it's not a string, it has been loading from fake user data +  ┗━━ 🛑 mandatory variable but has no value diff --git a/tests/layers-results/display.gitlab.md b/tests/layers-results/display.gitlab.md index fadea36a..9df22628 100644 --- a/tests/layers-results/display.gitlab.md +++ b/tests/layers-results/display.gitlab.md @@ -5,9 +5,9 @@ > [!note] Layers: > -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): [+ a value +] diff --git a/tests/layers-results/display.md b/tests/layers-results/display.md index 808e559d..ccb9288a 100644 --- a/tests/layers-results/display.md +++ b/tests/layers-results/display.md @@ -7,9 +7,9 @@ > [!NOTE] > > **Layers:** -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): a value diff --git a/tests/layers-results/display.sh b/tests/layers-results/display.sh index 8c183d9e..f8658264 100644 --- a/tests/layers-results/display.sh +++ b/tests/layers-results/display.sh @@ -1,10 +1,11 @@ ╭─────── Caption ────────╮ │ Variable Default value │ ╰────────────────────────╯ -╭── Layers ───╮ -│ name1 name2 │ -│ name3 │ -│ name4 │ -╰─────────────╯ +╭─ Layers ─╮ +│ • name1 │ +│ • name2 │ +│ • name3 │ +│ • name4 │ +╰──────────╯ Variables: ┗━━ 📓 a_variable (my variable only to test): a value diff --git a/tests/layers-values-config-results/display.gitlab.md b/tests/layers-values-config-results/display.gitlab.md index 9860cf37..3bab5a90 100644 --- a/tests/layers-values-config-results/display.gitlab.md +++ b/tests/layers-values-config-results/display.gitlab.md @@ -6,9 +6,9 @@ > [!note] Layers: > -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): [- a modified value -] ← source3 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-config-results/display.md b/tests/layers-values-config-results/display.md index f3a49d1b..51827f2a 100644 --- a/tests/layers-values-config-results/display.md +++ b/tests/layers-values-config-results/display.md @@ -8,9 +8,9 @@ > [!NOTE] > > **Layers:** -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): a modified value ← source3 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-config-results/display.sh b/tests/layers-values-config-results/display.sh index 9d5b9517..f915a0ff 100644 --- a/tests/layers-values-config-results/display.sh +++ b/tests/layers-values-config-results/display.sh @@ -2,10 +2,11 @@ │ Variable Modified value │ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ -╭── Layers ───╮ -│ name1 name2 │ -│ name3 │ -│ name4 │ -╰─────────────╯ +╭─ Layers ─╮ +│ • name1 │ +│ • name2 │ +│ • name3 │ +│ • name4 │ +╰──────────╯ Variables: ┗━━ 📓 a_variable (my variable only to test): a modified value ◀ source3 (⏳ a value) diff --git a/tests/layers-values-metaconfig-mix-results/display.gitlab.md b/tests/layers-values-metaconfig-mix-results/display.gitlab.md index d483b811..ca96f1b6 100644 --- a/tests/layers-values-metaconfig-mix-results/display.gitlab.md +++ b/tests/layers-values-metaconfig-mix-results/display.gitlab.md @@ -6,9 +6,9 @@ > [!note] Layers: > -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): [- a modified value -] ← source3 (:hourglass_flowing_sand: a modified value ← source2 :hourglass_flowing_sand: a modified value ← source1 :hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig-mix-results/display.md b/tests/layers-values-metaconfig-mix-results/display.md index 84a466b4..1ace6ec9 100644 --- a/tests/layers-values-metaconfig-mix-results/display.md +++ b/tests/layers-values-metaconfig-mix-results/display.md @@ -8,9 +8,9 @@ > [!NOTE] > > **Layers:** -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): a modified value ← source3 (:hourglass_flowing_sand: a modified value ← source2 :hourglass_flowing_sand: a modified value ← source1 :hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig-mix-results/display.sh b/tests/layers-values-metaconfig-mix-results/display.sh index 54bab9d6..ecbe01b7 100644 --- a/tests/layers-values-metaconfig-mix-results/display.sh +++ b/tests/layers-values-metaconfig-mix-results/display.sh @@ -2,10 +2,11 @@ │ Variable Modified value │ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ -╭── Layers ───╮ -│ name1 name2 │ -│ name3 │ -│ name4 │ -╰─────────────╯ +╭─ Layers ─╮ +│ • name1 │ +│ • name2 │ +│ • name3 │ +│ • name4 │ +╰──────────╯ Variables: ┗━━ 📓 a_variable (my variable only to test): a modified value ◀ source3 (⏳ a modified value ◀ source2 ⏳ a modified value ◀ source1 ⏳ a value) diff --git a/tests/layers-values-metaconfig1-results/display.gitlab.md b/tests/layers-values-metaconfig1-results/display.gitlab.md index 724b2be9..ca1a8d19 100644 --- a/tests/layers-values-metaconfig1-results/display.gitlab.md +++ b/tests/layers-values-metaconfig1-results/display.gitlab.md @@ -6,9 +6,9 @@ > [!note] Layers: > -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): [- a modified value -] ← source2 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig1-results/display.md b/tests/layers-values-metaconfig1-results/display.md index 767fbc55..b24dedee 100644 --- a/tests/layers-values-metaconfig1-results/display.md +++ b/tests/layers-values-metaconfig1-results/display.md @@ -8,9 +8,9 @@ > [!NOTE] > > **Layers:** -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): a modified value ← source2 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig1-results/display.sh b/tests/layers-values-metaconfig1-results/display.sh index f46f4869..0ee91b31 100644 --- a/tests/layers-values-metaconfig1-results/display.sh +++ b/tests/layers-values-metaconfig1-results/display.sh @@ -2,10 +2,11 @@ │ Variable Modified value │ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ -╭── Layers ───╮ -│ name1 name2 │ -│ name3 │ -│ name4 │ -╰─────────────╯ +╭─ Layers ─╮ +│ • name1 │ +│ • name2 │ +│ • name3 │ +│ • name4 │ +╰──────────╯ Variables: ┗━━ 📓 a_variable (my variable only to test): a modified value ◀ source2 (⏳ a value) diff --git a/tests/layers-values-metaconfig2-results/display.gitlab.md b/tests/layers-values-metaconfig2-results/display.gitlab.md index 909dd528..c234e658 100644 --- a/tests/layers-values-metaconfig2-results/display.gitlab.md +++ b/tests/layers-values-metaconfig2-results/display.gitlab.md @@ -6,9 +6,9 @@ > [!note] Layers: > -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): [- a modified value -] ← source1 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig2-results/display.md b/tests/layers-values-metaconfig2-results/display.md index 24a01c83..2462fef4 100644 --- a/tests/layers-values-metaconfig2-results/display.md +++ b/tests/layers-values-metaconfig2-results/display.md @@ -8,9 +8,9 @@ > [!NOTE] > > **Layers:** -> name1 name2\ -> name3\ -> name4\ - +> - name1 +> - name2 +> - name3 +> - name4 Variables: - :notebook: a_variable (my variable only to test): a modified value ← source1 (:hourglass_flowing_sand: a value) diff --git a/tests/layers-values-metaconfig2-results/display.sh b/tests/layers-values-metaconfig2-results/display.sh index 65d70e70..c8a87034 100644 --- a/tests/layers-values-metaconfig2-results/display.sh +++ b/tests/layers-values-metaconfig2-results/display.sh @@ -2,10 +2,11 @@ │ Variable Modified value │ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ -╭── Layers ───╮ -│ name1 name2 │ -│ name3 │ -│ name4 │ -╰─────────────╯ +╭─ Layers ─╮ +│ • name1 │ +│ • name2 │ +│ • name3 │ +│ • name4 │ +╰──────────╯ Variables: ┗━━ 📓 a_variable (my variable only to test): a modified value ◀ source1 (⏳ a value) diff --git a/tests/results/test/04_1jinja_and_hidden.gitlab.md b/tests/results/test/04_1jinja_and_hidden.gitlab.md new file mode 100644 index 00000000..1da48a8a --- /dev/null +++ b/tests/results/test/04_1jinja_and_hidden.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - [+ Unmodifiable variable +] +> - [+ Default value +] + +Variables: +- :notebook: [+ A first variable +]: [+ true +] diff --git a/tests/results/test/04_1jinja_and_hidden.md b/tests/results/test/04_1jinja_and_hidden.md new file mode 100644 index 00000000..f647978c --- /dev/null +++ b/tests/results/test/04_1jinja_and_hidden.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Unmodifiable variable +> - Default value + +Variables: +- :notebook: A first variable: true diff --git a/tests/results/test/04_1jinja_and_hidden.sh b/tests/results/test/04_1jinja_and_hidden.sh new file mode 100644 index 00000000..4abab94b --- /dev/null +++ b/tests/results/test/04_1jinja_and_hidden.sh @@ -0,0 +1,5 @@ +╭────────────── Caption ──────────────╮ +│ Unmodifiable variable Default value │ +╰─────────────────────────────────────╯ +Variables: +┗━━ 📓 A first variable: true diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable10.md b/tests/results/test/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable10.md rename to tests/results/test/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable10.sh b/tests/results/test/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable10.sh rename to tests/results/test/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory/00_0empty.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/00_0empty.gitlab.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/00_0empty.md b/tests/results/test/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/00_0empty.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/00_0empty.sh b/tests/results/test/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/00_0empty.sh rename to tests/results/test/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable.gitlab.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable.md b/tests/results/test/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable.sh b/tests/results/test/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable.sh rename to tests/results/test/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable2.md b/tests/results/test/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable2.md rename to tests/results/test/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable2.sh b/tests/results/test/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable2.sh rename to tests/results/test/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md index 936caa53..3918de53 100644 --- a/tests/results/test/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test/60_5family_dynamic_calc_description.gitlab.md @@ -5,12 +5,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test/60_5family_dynamic_calc_description.md b/tests/results/test/60_5family_dynamic_calc_description.md index 3a12c9e1..41f3fc4b 100644 --- a/tests/results/test/60_5family_dynamic_calc_description.md +++ b/tests/results/test/60_5family_dynamic_calc_description.md @@ -6,12 +6,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test +- :notebook: a new variable: string1 ← loaded from rougail-test +- :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test/60_5family_dynamic_calc_description.sh b/tests/results/test/60_5family_dynamic_calc_description.sh index 526482f2..0b70ba77 100644 --- a/tests/results/test/60_5family_dynamic_calc_description.sh +++ b/tests/results/test/60_5family_dynamic_calc_description.sh @@ -3,12 +3,12 @@ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test +┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test +┗━━ 📓 a new variable:  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..13f4ad32 --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,18 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: [+ A suffix variable2 +]: [+ val1 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.md b/tests/results/test/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..384ecb6f --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,19 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A suffix variable2: val1 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test/60_5family_dynamic_calc_identifier.sh b/tests/results/test/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..5a51c289 --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,15 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📓 A suffix variable2: val1 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) +┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..894e3e40 --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,27 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: [+ A suffix variable2 +]: [+ val1 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..debb20b2 --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,28 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A suffix variable2: val1 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..9889a819 --- /dev/null +++ b/tests/results/test/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,24 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📓 A suffix variable2: val1 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📓 A variable calculated: + ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) + ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test/60_6family_subdynamic_inside.gitlab.md b/tests/results/test/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..954bc32f --- /dev/null +++ b/tests/results/test/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,36 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test/60_6family_subdynamic_inside.md b/tests/results/test/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..13150224 --- /dev/null +++ b/tests/results/test/60_6family_subdynamic_inside.md @@ -0,0 +1,37 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test/60_6family_subdynamic_inside.sh b/tests/results/test/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b96e0c65 --- /dev/null +++ b/tests/results/test/60_6family_subdynamic_inside.sh @@ -0,0 +1,34 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┗━━ string3 ◀ loaded from rougail-test +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃   ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┗━━ 📓 A variable calculated: +   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_mandatory/00_0version_underscore.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_0version_underscore.md b/tests/results/test_mandatory/00_0version_underscore.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/00_0version_underscore.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_0version_underscore.sh b/tests/results/test_mandatory/00_0version_underscore.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/00_0version_underscore.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_mandatory/00_1empty_variable.gitlab.md deleted file mode 100644 index 1b86c63e..00000000 --- a/tests/results/test_mandatory/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_1empty_variable.md b/tests/results/test_mandatory/00_1empty_variable.md deleted file mode 100644 index 8268a71a..00000000 --- a/tests/results/test_mandatory/00_1empty_variable.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_1empty_variable.sh b/tests/results/test_mandatory/00_1empty_variable.sh deleted file mode 100644 index b0eed8c1..00000000 --- a/tests/results/test_mandatory/00_1empty_variable.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_mandatory/00_2default_calculated.gitlab.md deleted file mode 100644 index f92d0ee5..00000000 --- a/tests/results/test_mandatory/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated.md b/tests/results/test_mandatory/00_2default_calculated.md deleted file mode 100644 index 48a68168..00000000 --- a/tests/results/test_mandatory/00_2default_calculated.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated.sh b/tests/results/test_mandatory/00_2default_calculated.sh deleted file mode 100644 index 6768e633..00000000 --- a/tests/results/test_mandatory/00_2default_calculated.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index 01c66533..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/00_2default_calculated_multi.md b/tests/results/test_mandatory/00_2default_calculated_multi.md deleted file mode 100644 index b7756e16..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/00_2default_calculated_multi.sh b/tests/results/test_mandatory/00_2default_calculated_multi.sh deleted file mode 100644 index 9d91c1da..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 8ff93bcd..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: [+ leadership +] - - :open_file_folder: [+ a first variable +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: [+ a first variable +]: [+ a_value +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_mandatory/00_2default_calculated_params_permissive.md b/tests/results/test_mandatory/00_2default_calculated_params_permissive.md deleted file mode 100644 index d6ddd1fa..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leadership - - :open_file_folder: a first variable - - :notebook: a first variable: a_value - - :notebook: a first variable: a_value -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_mandatory/00_2default_calculated_params_permissive.sh b/tests/results/test_mandatory/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 92f847f1..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📂 leadership -┃ ┗━━ 📂 a first variable -┃  ┣━━ 📓 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_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable.md b/tests/results/test_mandatory/00_2default_calculated_variable.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable.sh b/tests/results/test_mandatory/00_2default_calculated_variable.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index 236f5765..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description.md b/tests/results/test_mandatory/00_2default_calculated_variable_description.md deleted file mode 100644 index a52ab165..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description.sh b/tests/results/test_mandatory/00_2default_calculated_variable_description.sh deleted file mode 100644 index d1dd8bbd..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 024f26fa..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 699fa959..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 404769d9..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.md b/tests/results/test_mandatory/00_2default_calculated_variable_transitive.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.sh b/tests/results/test_mandatory/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_mandatory/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_mandatory/00_4load_subfolder.gitlab.md deleted file mode 100644 index b9bd4cd9..00000000 --- a/tests/results/test_mandatory/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_4load_subfolder.md b/tests/results/test_mandatory/00_4load_subfolder.md deleted file mode 100644 index 659da021..00000000 --- a/tests/results/test_mandatory/00_4load_subfolder.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_4load_subfolder.sh b/tests/results/test_mandatory/00_4load_subfolder.sh deleted file mode 100644 index 83e10216..00000000 --- a/tests/results/test_mandatory/00_4load_subfolder.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_5load_notype.gitlab.md b/tests/results/test_mandatory/00_5load_notype.gitlab.md deleted file mode 100644 index a3648ea1..00000000 --- a/tests/results/test_mandatory/00_5load_notype.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory/00_5load_notype.md b/tests/results/test_mandatory/00_5load_notype.md deleted file mode 100644 index e47f6c1c..00000000 --- a/tests/results/test_mandatory/00_5load_notype.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory/00_5load_notype.sh b/tests/results/test_mandatory/00_5load_notype.sh deleted file mode 100644 index 08ebb456..00000000 --- a/tests/results/test_mandatory/00_5load_notype.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_mandatory/00_6boolean.gitlab.md b/tests/results/test_mandatory/00_6boolean.gitlab.md deleted file mode 100644 index fec3bc0b..00000000 --- a/tests/results/test_mandatory/00_6boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory/00_6boolean.md b/tests/results/test_mandatory/00_6boolean.md deleted file mode 100644 index 17404950..00000000 --- a/tests/results/test_mandatory/00_6boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory/00_6boolean.sh b/tests/results/test_mandatory/00_6boolean.sh deleted file mode 100644 index 45ac0eb3..00000000 --- a/tests/results/test_mandatory/00_6boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 6635fde9..00000000 --- a/tests/results/test_mandatory/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/00_6boolean_no_mandatory.md b/tests/results/test_mandatory/00_6boolean_no_mandatory.md deleted file mode 100644 index be600de0..00000000 --- a/tests/results/test_mandatory/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/00_6boolean_no_mandatory.sh b/tests/results/test_mandatory/00_6boolean_no_mandatory.sh deleted file mode 100644 index 7b54f607..00000000 --- a/tests/results/test_mandatory/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory/00_6choice.gitlab.md b/tests/results/test_mandatory/00_6choice.gitlab.md deleted file mode 100644 index caa9a97c..00000000 --- a/tests/results/test_mandatory/00_6choice.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test -- :notebook: the third variable: [- a -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory/00_6choice.md b/tests/results/test_mandatory/00_6choice.md deleted file mode 100644 index 2a397ade..00000000 --- a/tests/results/test_mandatory/00_6choice.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test -- :notebook: the third variable: a ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory/00_6choice.sh b/tests/results/test_mandatory/00_6choice.sh deleted file mode 100644 index 74d6574b..00000000 --- a/tests/results/test_mandatory/00_6choice.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┣━━ 📓 the second variable: a ◀ loaded from rougail-test -┣━━ 📓 the third variable: a ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_mandatory/00_6choice_calculation.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_6choice_calculation.md b/tests/results/test_mandatory/00_6choice_calculation.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory/00_6choice_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_6choice_calculation.sh b/tests/results/test_mandatory/00_6choice_calculation.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory/00_6choice_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory/00_6choice_link.gitlab.md b/tests/results/test_mandatory/00_6choice_link.gitlab.md deleted file mode 100644 index 3daf20b1..00000000 --- a/tests/results/test_mandatory/00_6choice_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory/00_6choice_link.md b/tests/results/test_mandatory/00_6choice_link.md deleted file mode 100644 index efd2e064..00000000 --- a/tests/results/test_mandatory/00_6choice_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory/00_6choice_link.sh b/tests/results/test_mandatory/00_6choice_link.sh deleted file mode 100644 index 2b93f3e5..00000000 --- a/tests/results/test_mandatory/00_6choice_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_mandatory/00_6choice_variable.gitlab.md deleted file mode 100644 index a71e9b27..00000000 --- a/tests/results/test_mandatory/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory/00_6choice_variable.md b/tests/results/test_mandatory/00_6choice_variable.md deleted file mode 100644 index 37fb9257..00000000 --- a/tests/results/test_mandatory/00_6choice_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory/00_6choice_variable.sh b/tests/results/test_mandatory/00_6choice_variable.sh deleted file mode 100644 index 05afa0fd..00000000 --- a/tests/results/test_mandatory/00_6choice_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 20258acb..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_6choice_variable_link.md b/tests/results/test_mandatory/00_6choice_variable_link.md deleted file mode 100644 index c0f5fe9b..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_6choice_variable_link.sh b/tests/results/test_mandatory/00_6choice_variable_link.sh deleted file mode 100644 index e2b60964..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 52be8a70..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_6choice_variable_link2.md b/tests/results/test_mandatory/00_6choice_variable_link2.md deleted file mode 100644 index 8a0fc5b2..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/00_6choice_variable_link2.sh b/tests/results/test_mandatory/00_6choice_variable_link2.sh deleted file mode 100644 index f79a8ff9..00000000 --- a/tests/results/test_mandatory/00_6choice_variable_link2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 family - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/00_6custom.gitlab.md b/tests/results/test_mandatory/00_6custom.gitlab.md deleted file mode 100644 index 0c7d688f..00000000 --- a/tests/results/test_mandatory/00_6custom.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6custom.md b/tests/results/test_mandatory/00_6custom.md deleted file mode 100644 index 84e63614..00000000 --- a/tests/results/test_mandatory/00_6custom.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6custom.sh b/tests/results/test_mandatory/00_6custom.sh deleted file mode 100644 index ff540e67..00000000 --- a/tests/results/test_mandatory/00_6custom.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/00_6domainname.gitlab.md b/tests/results/test_mandatory/00_6domainname.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_mandatory/00_6domainname.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory/00_6domainname.md b/tests/results/test_mandatory/00_6domainname.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_mandatory/00_6domainname.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory/00_6domainname.sh b/tests/results/test_mandatory/00_6domainname.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_mandatory/00_6domainname.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_mandatory/00_6domainname_params.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_mandatory/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory/00_6domainname_params.md b/tests/results/test_mandatory/00_6domainname_params.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_mandatory/00_6domainname_params.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory/00_6domainname_params.sh b/tests/results/test_mandatory/00_6domainname_params.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_mandatory/00_6domainname_params.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_mandatory/00_6float.gitlab.md b/tests/results/test_mandatory/00_6float.gitlab.md deleted file mode 100644 index 1d998460..00000000 --- a/tests/results/test_mandatory/00_6float.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_mandatory/00_6float.md b/tests/results/test_mandatory/00_6float.md deleted file mode 100644 index 199a039f..00000000 --- a/tests/results/test_mandatory/00_6float.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_mandatory/00_6float.sh b/tests/results/test_mandatory/00_6float.sh deleted file mode 100644 index 464bb5f7..00000000 --- a/tests/results/test_mandatory/00_6float.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_mandatory/00_6integer.gitlab.md b/tests/results/test_mandatory/00_6integer.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_mandatory/00_6integer.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/00_6integer.md b/tests/results/test_mandatory/00_6integer.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_mandatory/00_6integer.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/00_6integer.sh b/tests/results/test_mandatory/00_6integer.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_mandatory/00_6integer.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory/00_6ip.gitlab.md b/tests/results/test_mandatory/00_6ip.gitlab.md deleted file mode 100644 index 884516c1..00000000 --- a/tests/results/test_mandatory/00_6ip.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_mandatory/00_6ip.md b/tests/results/test_mandatory/00_6ip.md deleted file mode 100644 index 99cd0d71..00000000 --- a/tests/results/test_mandatory/00_6ip.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_mandatory/00_6ip.sh b/tests/results/test_mandatory/00_6ip.sh deleted file mode 100644 index b15c8948..00000000 --- a/tests/results/test_mandatory/00_6ip.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) -┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) -┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_mandatory/00_6network.gitlab.md b/tests/results/test_mandatory/00_6network.gitlab.md deleted file mode 100644 index 6bc5530c..00000000 --- a/tests/results/test_mandatory/00_6network.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_mandatory/00_6network.md b/tests/results/test_mandatory/00_6network.md deleted file mode 100644 index 3e6ab954..00000000 --- a/tests/results/test_mandatory/00_6network.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_mandatory/00_6network.sh b/tests/results/test_mandatory/00_6network.sh deleted file mode 100644 index 855ab3a3..00000000 --- a/tests/results/test_mandatory/00_6network.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) -┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) -┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_mandatory/00_6number.gitlab.md b/tests/results/test_mandatory/00_6number.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_mandatory/00_6number.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/00_6number.md b/tests/results/test_mandatory/00_6number.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_mandatory/00_6number.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/00_6number.sh b/tests/results/test_mandatory/00_6number.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_mandatory/00_6number.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory/00_6port.gitlab.md b/tests/results/test_mandatory/00_6port.gitlab.md deleted file mode 100644 index 11835540..00000000 --- a/tests/results/test_mandatory/00_6port.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: [- 80 -] ← loaded from rougail-test -- :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_mandatory/00_6port.md b/tests/results/test_mandatory/00_6port.md deleted file mode 100644 index ca62353b..00000000 --- a/tests/results/test_mandatory/00_6port.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: 80 ← loaded from rougail-test -- :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_mandatory/00_6port.sh b/tests/results/test_mandatory/00_6port.sh deleted file mode 100644 index f48b2821..00000000 --- a/tests/results/test_mandatory/00_6port.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test -┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_mandatory/00_6regexp.gitlab.md b/tests/results/test_mandatory/00_6regexp.gitlab.md deleted file mode 100644 index 7b610971..00000000 --- a/tests/results/test_mandatory/00_6regexp.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_mandatory/00_6regexp.md b/tests/results/test_mandatory/00_6regexp.md deleted file mode 100644 index 1d3fe3a0..00000000 --- a/tests/results/test_mandatory/00_6regexp.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_mandatory/00_6regexp.sh b/tests/results/test_mandatory/00_6regexp.sh deleted file mode 100644 index 248d53f8..00000000 --- a/tests/results/test_mandatory/00_6regexp.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_mandatory/00_6regexp_link.gitlab.md deleted file mode 100644 index 0bcef460..00000000 --- a/tests/results/test_mandatory/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_mandatory/00_6regexp_link.md b/tests/results/test_mandatory/00_6regexp_link.md deleted file mode 100644 index 2c6dd6e1..00000000 --- a/tests/results/test_mandatory/00_6regexp_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_mandatory/00_6regexp_link.sh b/tests/results/test_mandatory/00_6regexp_link.sh deleted file mode 100644 index b622acdb..00000000 --- a/tests/results/test_mandatory/00_6regexp_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) -┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_mandatory/00_6secret.gitlab.md b/tests/results/test_mandatory/00_6secret.gitlab.md deleted file mode 100644 index a8b62a7a..00000000 --- a/tests/results/test_mandatory/00_6secret.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test -- :notebook: the second variable: [- onE7vaLues_len1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6secret.md b/tests/results/test_mandatory/00_6secret.md deleted file mode 100644 index c2b5f674..00000000 --- a/tests/results/test_mandatory/00_6secret.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test -- :notebook: the second variable: onE7vaLues_len1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6secret.sh b/tests/results/test_mandatory/00_6secret.sh deleted file mode 100644 index e02679f4..00000000 --- a/tests/results/test_mandatory/00_6secret.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: onE7vaLues_len1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/00_6secret_param.gitlab.md b/tests/results/test_mandatory/00_6secret_param.gitlab.md deleted file mode 100644 index fde07521..00000000 --- a/tests/results/test_mandatory/00_6secret_param.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test -- :notebook: the second variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6secret_param.md b/tests/results/test_mandatory/00_6secret_param.md deleted file mode 100644 index 266e4e39..00000000 --- a/tests/results/test_mandatory/00_6secret_param.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test -- :notebook: the second variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/00_6secret_param.sh b/tests/results/test_mandatory/00_6secret_param.sh deleted file mode 100644 index fe11467b..00000000 --- a/tests/results/test_mandatory/00_6secret_param.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 the third variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/00_6string.gitlab.md b/tests/results/test_mandatory/00_6string.gitlab.md deleted file mode 100644 index 0f337dd7..00000000 --- a/tests/results/test_mandatory/00_6string.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test -- :notebook: the third variable: [- string1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/00_6string.md b/tests/results/test_mandatory/00_6string.md deleted file mode 100644 index 3d20a7b6..00000000 --- a/tests/results/test_mandatory/00_6string.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test -- :notebook: the third variable: string1 ← loaded from rougail-test -- :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/00_6string.sh b/tests/results/test_mandatory/00_6string.sh deleted file mode 100644 index 1180cc59..00000000 --- a/tests/results/test_mandatory/00_6string.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_mandatory/00_7choice_quote.gitlab.md deleted file mode 100644 index 7e65279f..00000000 --- a/tests/results/test_mandatory/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory/00_7choice_quote.md b/tests/results/test_mandatory/00_7choice_quote.md deleted file mode 100644 index d68a08e9..00000000 --- a/tests/results/test_mandatory/00_7choice_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory/00_7choice_quote.sh b/tests/results/test_mandatory/00_7choice_quote.sh deleted file mode 100644 index 3fd4be6b..00000000 --- a/tests/results/test_mandatory/00_7choice_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_mandatory/00_7help.gitlab.md b/tests/results/test_mandatory/00_7help.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory/00_7help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help.md b/tests/results/test_mandatory/00_7help.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory/00_7help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help.sh b/tests/results/test_mandatory/00_7help.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory/00_7help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_quote.gitlab.md b/tests/results/test_mandatory/00_7help_quote.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory/00_7help_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_quote.md b/tests/results/test_mandatory/00_7help_quote.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory/00_7help_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_quote.sh b/tests/results/test_mandatory/00_7help_quote.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory/00_7help_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_sup.gitlab.md b/tests/results/test_mandatory/00_7help_sup.gitlab.md deleted file mode 100644 index ac1d4b90..00000000 --- a/tests/results/test_mandatory/00_7help_sup.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first : [- string1 -] ← loaded from rougail-test -- :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_sup.md b/tests/results/test_mandatory/00_7help_sup.md deleted file mode 100644 index 40eb4168..00000000 --- a/tests/results/test_mandatory/00_7help_sup.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first : string1 ← loaded from rougail-test -- :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7help_sup.sh b/tests/results/test_mandatory/00_7help_sup.sh deleted file mode 100644 index 81ef100f..00000000 --- a/tests/results/test_mandatory/00_7help_sup.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first : string1 ◀ loaded from rougail-test -┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote.gitlab.md deleted file mode 100644 index f189f108..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_mandatory/00_7value_doublequote.md b/tests/results/test_mandatory/00_7value_doublequote.md deleted file mode 100644 index 85e6ada7..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_mandatory/00_7value_doublequote.sh b/tests/results/test_mandatory/00_7value_doublequote.sh deleted file mode 100644 index 0e461397..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 3e7e1a8b..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_mandatory/00_7value_doublequote2.md b/tests/results/test_mandatory/00_7value_doublequote2.md deleted file mode 100644 index 1cb8226d..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_mandatory/00_7value_doublequote2.sh b/tests/results/test_mandatory/00_7value_doublequote2.sh deleted file mode 100644 index c062e186..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 25077480..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_mandatory/00_7value_doublequote3.md b/tests/results/test_mandatory/00_7value_doublequote3.md deleted file mode 100644 index ca15bf9a..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_mandatory/00_7value_doublequote3.sh b/tests/results/test_mandatory/00_7value_doublequote3.sh deleted file mode 100644 index 6ce54613..00000000 --- a/tests/results/test_mandatory/00_7value_doublequote3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_mandatory/00_7value_quote.gitlab.md b/tests/results/test_mandatory/00_7value_quote.gitlab.md deleted file mode 100644 index 0c1efcaf..00000000 --- a/tests/results/test_mandatory/00_7value_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory/00_7value_quote.md b/tests/results/test_mandatory/00_7value_quote.md deleted file mode 100644 index c449b848..00000000 --- a/tests/results/test_mandatory/00_7value_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory/00_7value_quote.sh b/tests/results/test_mandatory/00_7value_quote.sh deleted file mode 100644 index 9f81028f..00000000 --- a/tests/results/test_mandatory/00_7value_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_mandatory/00_8calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_8calculation_information.md b/tests/results/test_mandatory/00_8calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/00_8calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_8calculation_information.sh b/tests/results/test_mandatory/00_8calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/00_8calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_8test.gitlab.md b/tests/results/test_mandatory/00_8test.gitlab.md deleted file mode 100644 index c0815f1f..00000000 --- a/tests/results/test_mandatory/00_8test.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- test -] ← loaded from rougail-test -- :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- test1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_8test.md b/tests/results/test_mandatory/00_8test.md deleted file mode 100644 index 0cf7b6e4..00000000 --- a/tests/results/test_mandatory/00_8test.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: test ← loaded from rougail-test -- :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: test1 ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_8test.sh b/tests/results/test_mandatory/00_8test.sh deleted file mode 100644 index 410d4210..00000000 --- a/tests/results/test_mandatory/00_8test.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: test ◀ loaded from rougail-test -┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the sixth variable: - ┣━━ test1 ◀ loaded from rougail-test - ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index ac21615c..00000000 --- a/tests/results/test_mandatory/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9choice_variable_multi.md b/tests/results/test_mandatory/00_9choice_variable_multi.md deleted file mode 100644 index 03616d6d..00000000 --- a/tests/results/test_mandatory/00_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9choice_variable_multi.sh b/tests/results/test_mandatory/00_9choice_variable_multi.sh deleted file mode 100644 index f900f928..00000000 --- a/tests/results/test_mandatory/00_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test - ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_mandatory/00_9choice_variables.gitlab.md deleted file mode 100644 index 287ac4a2..00000000 --- a/tests/results/test_mandatory/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_mandatory/00_9choice_variables.md b/tests/results/test_mandatory/00_9choice_variables.md deleted file mode 100644 index f2a80522..00000000 --- a/tests/results/test_mandatory/00_9choice_variables.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_mandatory/00_9choice_variables.sh b/tests/results/test_mandatory/00_9choice_variables.sh deleted file mode 100644 index cd36825e..00000000 --- a/tests/results/test_mandatory/00_9choice_variables.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_mandatory/00_9default_calculation.gitlab.md deleted file mode 100644 index 39c88fc8..00000000 --- a/tests/results/test_mandatory/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_mandatory/00_9default_calculation.md b/tests/results/test_mandatory/00_9default_calculation.md deleted file mode 100644 index 7c1f3012..00000000 --- a/tests/results/test_mandatory/00_9default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_mandatory/00_9default_calculation.sh b/tests/results/test_mandatory/00_9default_calculation.sh deleted file mode 100644 index c6ef6ceb..00000000 --- a/tests/results/test_mandatory/00_9default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_information.md b/tests/results/test_mandatory/00_9default_calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_information.sh b/tests/results/test_mandatory/00_9default_calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.md b/tests/results/test_mandatory/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.sh b/tests/results/test_mandatory/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional.sh b/tests/results/test_mandatory/00_9default_calculation_multi_optional.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.sh b/tests/results/test_mandatory/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index 2a7eba1a..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.md b/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 37ec2ebc..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.sh b/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 0296637c..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index ee6735b5..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_optional.md b/tests/results/test_mandatory/00_9default_calculation_optional.md deleted file mode 100644 index b7621c63..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_optional.sh b/tests/results/test_mandatory/00_9default_calculation_optional.sh deleted file mode 100644 index 1b691023..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 12720a7e..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/00_9default_calculation_optional_exists.md b/tests/results/test_mandatory/00_9default_calculation_optional_exists.md deleted file mode 100644 index af923dbe..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/00_9default_calculation_optional_exists.sh b/tests/results/test_mandatory/00_9default_calculation_optional_exists.sh deleted file mode 100644 index 3d7cebbf..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index 270d2676..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory/00_9default_calculation_param_optional.md b/tests/results/test_mandatory/00_9default_calculation_param_optional.md deleted file mode 100644 index 98615c37..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory/00_9default_calculation_param_optional.sh b/tests/results/test_mandatory/00_9default_calculation_param_optional.sh deleted file mode 100644 index 70cff6f2..00000000 --- a/tests/results/test_mandatory/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_information_other_variable.md b/tests/results/test_mandatory/00_9default_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_information_other_variable.sh b/tests/results/test_mandatory/00_9default_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_information_other_variable2.md b/tests/results/test_mandatory/00_9default_information_other_variable2.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_information_other_variable2.sh b/tests/results/test_mandatory/00_9default_information_other_variable2.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_9default_integer.gitlab.md b/tests/results/test_mandatory/00_9default_integer.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory/00_9default_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_9default_integer.md b/tests/results/test_mandatory/00_9default_integer.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory/00_9default_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_9default_integer.sh b/tests/results/test_mandatory/00_9default_integer.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory/00_9default_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory/00_9default_number.gitlab.md b/tests/results/test_mandatory/00_9default_number.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory/00_9default_number.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_9default_number.md b/tests/results/test_mandatory/00_9default_number.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory/00_9default_number.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory/00_9default_number.sh b/tests/results/test_mandatory/00_9default_number.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory/00_9default_number.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_mandatory/01_6boolean_multi.gitlab.md deleted file mode 100644 index 5d310257..00000000 --- a/tests/results/test_mandatory/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/01_6boolean_multi.md b/tests/results/test_mandatory/01_6boolean_multi.md deleted file mode 100644 index d6d1b7bb..00000000 --- a/tests/results/test_mandatory/01_6boolean_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/01_6boolean_multi.sh b/tests/results/test_mandatory/01_6boolean_multi.sh deleted file mode 100644 index 17196b85..00000000 --- a/tests/results/test_mandatory/01_6boolean_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the sixth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the seventh variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the eighth variable: - ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_mandatory/01_6custom_multi.gitlab.md deleted file mode 100644 index 4209eb56..00000000 --- a/tests/results/test_mandatory/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6custom_multi.md b/tests/results/test_mandatory/01_6custom_multi.md deleted file mode 100644 index 0e57ecd7..00000000 --- a/tests/results/test_mandatory/01_6custom_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6custom_multi.sh b/tests/results/test_mandatory/01_6custom_multi.sh deleted file mode 100644 index ae0715f6..00000000 --- a/tests/results/test_mandatory/01_6custom_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first custom variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 a second custom variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6float_multi.gitlab.md b/tests/results/test_mandatory/01_6float_multi.gitlab.md deleted file mode 100644 index 93e48755..00000000 --- a/tests/results/test_mandatory/01_6float_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6float_multi.md b/tests/results/test_mandatory/01_6float_multi.md deleted file mode 100644 index a31f7046..00000000 --- a/tests/results/test_mandatory/01_6float_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6float_multi.sh b/tests/results/test_mandatory/01_6float_multi.sh deleted file mode 100644 index b486778a..00000000 --- a/tests/results/test_mandatory/01_6float_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 2.2 ◀ loaded from rougail-test - ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_mandatory/01_6integer_multi.gitlab.md deleted file mode 100644 index e30525a2..00000000 --- a/tests/results/test_mandatory/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi.md b/tests/results/test_mandatory/01_6integer_multi.md deleted file mode 100644 index eaa41990..00000000 --- a/tests/results/test_mandatory/01_6integer_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi.sh b/tests/results/test_mandatory/01_6integer_multi.sh deleted file mode 100644 index c0be4d5e..00000000 --- a/tests/results/test_mandatory/01_6integer_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 836b7568..00000000 --- a/tests/results/test_mandatory/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi_mandatory.md b/tests/results/test_mandatory/01_6integer_multi_mandatory.md deleted file mode 100644 index 87fbdf9c..00000000 --- a/tests/results/test_mandatory/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6integer_multi_mandatory.sh b/tests/results/test_mandatory/01_6integer_multi_mandatory.sh deleted file mode 100644 index 442425ee..00000000 --- a/tests/results/test_mandatory/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 the first variable: - ┣━━ 1 ◀ loaded from rougail-test - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_empty.gitlab.md b/tests/results/test_mandatory/01_6string_empty.gitlab.md deleted file mode 100644 index 5fbc910b..00000000 --- a/tests/results/test_mandatory/01_6string_empty.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_empty.md b/tests/results/test_mandatory/01_6string_empty.md deleted file mode 100644 index 975280ed..00000000 --- a/tests/results/test_mandatory/01_6string_empty.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_empty.sh b/tests/results/test_mandatory/01_6string_empty.sh deleted file mode 100644 index 1a9baced..00000000 --- a/tests/results/test_mandatory/01_6string_empty.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test (⏳ null) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi.gitlab.md b/tests/results/test_mandatory/01_6string_multi.gitlab.md deleted file mode 100644 index 3142597e..00000000 --- a/tests/results/test_mandatory/01_6string_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi.md b/tests/results/test_mandatory/01_6string_multi.md deleted file mode 100644 index c3e2d0f4..00000000 --- a/tests/results/test_mandatory/01_6string_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi.sh b/tests/results/test_mandatory/01_6string_multi.sh deleted file mode 100644 index 1a9fb9c3..00000000 --- a/tests/results/test_mandatory/01_6string_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_mandatory/01_6string_multi_length.gitlab.md deleted file mode 100644 index db6dabfb..00000000 --- a/tests/results/test_mandatory/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi_length.md b/tests/results/test_mandatory/01_6string_multi_length.md deleted file mode 100644 index ce1579a3..00000000 --- a/tests/results/test_mandatory/01_6string_multi_length.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_6string_multi_length.sh b/tests/results/test_mandatory/01_6string_multi_length.sh deleted file mode 100644 index 2b1c2a8e..00000000 --- a/tests/results/test_mandatory/01_6string_multi_length.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) -┗━━ 📓 the variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) - ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index 7974ca1b..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote.md b/tests/results/test_mandatory/01_7value_multi_doublequote.md deleted file mode 100644 index 43e19150..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote.sh b/tests/results/test_mandatory/01_7value_multi_doublequote.sh deleted file mode 100644 index 580c6eba..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index 9042903f..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote2.md b/tests/results/test_mandatory/01_7value_multi_doublequote2.md deleted file mode 100644 index 364a85c4..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_doublequote2.sh b/tests/results/test_mandatory/01_7value_multi_doublequote2.sh deleted file mode 100644 index c622b332..00000000 --- a/tests/results/test_mandatory/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 33da1434..00000000 --- a/tests/results/test_mandatory/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_quote.md b/tests/results/test_mandatory/01_7value_multi_quote.md deleted file mode 100644 index 89ae9bc4..00000000 --- a/tests/results/test_mandatory/01_7value_multi_quote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_7value_multi_quote.sh b/tests/results/test_mandatory/01_7value_multi_quote.sh deleted file mode 100644 index 09cf19be..00000000 --- a/tests/results/test_mandatory/01_7value_multi_quote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 24d1736f..00000000 --- a/tests/results/test_mandatory/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_8calculation_information_multi.md b/tests/results/test_mandatory/01_8calculation_information_multi.md deleted file mode 100644 index 46dfeff6..00000000 --- a/tests/results/test_mandatory/01_8calculation_information_multi.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_8calculation_information_multi.sh b/tests/results/test_mandatory/01_8calculation_information_multi.sh deleted file mode 100644 index c86f0881..00000000 --- a/tests/results/test_mandatory/01_8calculation_information_multi.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index f2fff686..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_9choice_variable_multi.md b/tests/results/test_mandatory/01_9choice_variable_multi.md deleted file mode 100644 index 2382d828..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/01_9choice_variable_multi.sh b/tests/results/test_mandatory/01_9choice_variable_multi.sh deleted file mode 100644 index d136bfab..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index c8b8b854..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory/01_9choice_variable_optional.md b/tests/results/test_mandatory/01_9choice_variable_optional.md deleted file mode 100644 index 586b2381..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_optional.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory/01_9choice_variable_optional.sh b/tests/results/test_mandatory/01_9choice_variable_optional.sh deleted file mode 100644 index 0e05eefe..00000000 --- a/tests/results/test_mandatory/01_9choice_variable_optional.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_mandatory/02_0tags.gitlab.md b/tests/results/test_mandatory/02_0tags.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory/02_0tags.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/02_0tags.md b/tests/results/test_mandatory/02_0tags.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory/02_0tags.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/02_0tags.sh b/tests/results/test_mandatory/02_0tags.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory/02_0tags.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_0type_param.gitlab.md b/tests/results/test_mandatory/04_0type_param.gitlab.md deleted file mode 100644 index ee97f7cd..00000000 --- a/tests/results/test_mandatory/04_0type_param.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/04_0type_param.md b/tests/results/test_mandatory/04_0type_param.md deleted file mode 100644 index f0d07715..00000000 --- a/tests/results/test_mandatory/04_0type_param.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/04_0type_param.sh b/tests/results/test_mandatory/04_0type_param.sh deleted file mode 100644 index 053465dd..00000000 --- a/tests/results/test_mandatory/04_0type_param.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_mandatory/04_0type_param_integer.gitlab.md deleted file mode 100644 index 234a5b5f..00000000 --- a/tests/results/test_mandatory/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/04_0type_param_integer.md b/tests/results/test_mandatory/04_0type_param_integer.md deleted file mode 100644 index 67873679..00000000 --- a/tests/results/test_mandatory/04_0type_param_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory/04_0type_param_integer.sh b/tests/results/test_mandatory/04_0type_param_integer.sh deleted file mode 100644 index 695cea51..00000000 --- a/tests/results/test_mandatory/04_0type_param_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory/04_1auto_save.gitlab.md b/tests/results/test_mandatory/04_1auto_save.gitlab.md deleted file mode 100644 index e1a60ad6..00000000 --- a/tests/results/test_mandatory/04_1auto_save.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_mandatory/04_1auto_save.md b/tests/results/test_mandatory/04_1auto_save.md deleted file mode 100644 index 18a70157..00000000 --- a/tests/results/test_mandatory/04_1auto_save.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: an auto save variable: no diff --git a/tests/results/test_mandatory/04_1auto_save.sh b/tests/results/test_mandatory/04_1auto_save.sh deleted file mode 100644 index 56bd3b1f..00000000 --- a/tests/results/test_mandatory/04_1auto_save.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index 469ed912..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- no -] diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated.md b/tests/results/test_mandatory/04_1auto_save_and_calculated.md deleted file mode 100644 index 093d07d4..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: no diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated.sh b/tests/results/test_mandatory/04_1auto_save_and_calculated.sh deleted file mode 100644 index 31019354..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: no diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index b6f6045b..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- yes -] diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.md b/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index 9cad597b..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: yes diff --git a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 6f25cf6c..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: yes diff --git a/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index 48a99f7a..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [- Modified value -] - -Variables: -- :notebook: [+ autosave variable +]: [- yes -] diff --git a/tests/results/test_mandatory/04_1auto_save_and_hidden.md b/tests/results/test_mandatory/04_1auto_save_and_hidden.md deleted file mode 100644 index 92ece53f..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Modified value - -Variables: -- :notebook: autosave variable: yes diff --git a/tests/results/test_mandatory/04_1auto_save_and_hidden.sh b/tests/results/test_mandatory/04_1auto_save_and_hidden.sh deleted file mode 100644 index 4cca0417..00000000 --- a/tests/results/test_mandatory/04_1auto_save_and_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 autosave variable: yes diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden.md b/tests/results/test_mandatory/04_1default_calculation_hidden.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden.sh b/tests/results/test_mandatory/04_1default_calculation_hidden.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_2.md b/tests/results/test_mandatory/04_1default_calculation_hidden_2.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_2.sh b/tests/results/test_mandatory/04_1default_calculation_hidden_2.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 170642de..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: [+ a first variable +]: [+ value +] -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_3.md b/tests/results/test_mandatory/04_1default_calculation_hidden_3.md deleted file mode 100644 index 10dc1999..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: value -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_3.sh b/tests/results/test_mandatory/04_1default_calculation_hidden_3.sh deleted file mode 100644 index e00e3612..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: value -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index b4eab162..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: [+ a first variable +]: [+ value +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_4.md b/tests/results/test_mandatory/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7d07b2f2..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: value -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_4.sh b/tests/results/test_mandatory/04_1default_calculation_hidden_4.sh deleted file mode 100644 index 4f5f03d3..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 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_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index 205a661e..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: [+ a second variable +]: [+ string1 +] -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_5.md b/tests/results/test_mandatory/04_1default_calculation_hidden_5.md deleted file mode 100644 index 37bb8509..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_5.sh b/tests/results/test_mandatory/04_1default_calculation_hidden_5.sh deleted file mode 100644 index c8275c28..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index cb9b1286..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_6.md b/tests/results/test_mandatory/04_1default_calculation_hidden_6.md deleted file mode 100644 index 5c8e4af5..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 diff --git a/tests/results/test_mandatory/04_1default_calculation_hidden_6.sh b/tests/results/test_mandatory/04_1default_calculation_hidden_6.sh deleted file mode 100644 index f1f4aba5..00000000 --- a/tests/results/test_mandatory/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 a second variable: string1 diff --git a/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 46e2de93..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_boolean.md b/tests/results/test_mandatory/04_5disabled_calculation_boolean.md deleted file mode 100644 index 1faa8462..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_boolean.sh b/tests/results/test_mandatory/04_5disabled_calculation_boolean.sh deleted file mode 100644 index ac23b242..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index 286460f7..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: [+ a first variable +]: [+ null +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional.md b/tests/results/test_mandatory/04_5disabled_calculation_optional.md deleted file mode 100644 index d20abd3e..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: null -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional.sh b/tests/results/test_mandatory/04_5disabled_calculation_optional.sh deleted file mode 100644 index 0765f9ae..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a first variable: null -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index ec898881..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: [+ a first variable +]: [+ null +] -- :notebook: [+ a second variable +]: [+ null +] -- :notebook: [+ a forth variable +]: [+ null +] diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.md b/tests/results/test_mandatory/04_5disabled_calculation_optional_default.md deleted file mode 100644 index fa50882d..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a first variable: null -- :notebook: a second variable: null -- :notebook: a forth variable: null diff --git a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.sh b/tests/results/test_mandatory/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index e2608665..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a first variable: null -┣━━ 📓 a second variable: null -┗━━ 📓 a forth variable: null diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index f38884ea..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable3.md b/tests/results/test_mandatory/04_5disabled_calculation_variable3.md deleted file mode 100644 index b10ca8da..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable3.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 770895b7..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 2bfd3c07..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable4.md b/tests/results/test_mandatory/04_5disabled_calculation_variable4.md deleted file mode 100644 index f17f3292..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable4.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 23e7f59f..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 43cde7f8..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: [+ a condition +]: [+ false +] -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable5.md b/tests/results/test_mandatory/04_5disabled_calculation_variable5.md deleted file mode 100644 index f0db0c14..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :notebook: a condition: false -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable5.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 933e545c..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: false -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable6.md b/tests/results/test_mandatory/04_5disabled_calculation_variable6.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable6.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index 3f303baa..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable8.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a condition +]: [+ true +] diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable8.md b/tests/results/test_mandatory/04_5disabled_calculation_variable8.md deleted file mode 100644 index 6dc9f936..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable8.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a condition: true diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable8.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable8.sh deleted file mode 100644 index 9d912fbc..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable8.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable9.md b/tests/results/test_mandatory/04_5disabled_calculation_variable9.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable9.sh b/tests/results/test_mandatory/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators.gitlab.md b/tests/results/test_mandatory/04_5validators.gitlab.md deleted file mode 100644 index 0174f065..00000000 --- a/tests/results/test_mandatory/04_5validators.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators.md b/tests/results/test_mandatory/04_5validators.md deleted file mode 100644 index 12a8f33c..00000000 --- a/tests/results/test_mandatory/04_5validators.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators.sh b/tests/results/test_mandatory/04_5validators.sh deleted file mode 100644 index ea9b04d3..00000000 --- a/tests/results/test_mandatory/04_5validators.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_mandatory/04_5validators_differ.gitlab.md deleted file mode 100644 index 42963e31..00000000 --- a/tests/results/test_mandatory/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory/04_5validators_differ.md b/tests/results/test_mandatory/04_5validators_differ.md deleted file mode 100644 index e3a0a748..00000000 --- a/tests/results/test_mandatory/04_5validators_differ.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory/04_5validators_differ.sh b/tests/results/test_mandatory/04_5validators_differ.sh deleted file mode 100644 index c928da68..00000000 --- a/tests/results/test_mandatory/04_5validators_differ.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) -┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_mandatory/04_5validators_multi.gitlab.md deleted file mode 100644 index 80c92a68..00000000 --- a/tests/results/test_mandatory/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators_multi.md b/tests/results/test_mandatory/04_5validators_multi.md deleted file mode 100644 index 5604494f..00000000 --- a/tests/results/test_mandatory/04_5validators_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators_multi.sh b/tests/results/test_mandatory/04_5validators_multi.sh deleted file mode 100644 index e75b040f..00000000 --- a/tests/results/test_mandatory/04_5validators_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_mandatory/04_5validators_multi2.gitlab.md deleted file mode 100644 index 4f2aedad..00000000 --- a/tests/results/test_mandatory/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/04_5validators_multi2.md b/tests/results/test_mandatory/04_5validators_multi2.md deleted file mode 100644 index 4835d09e..00000000 --- a/tests/results/test_mandatory/04_5validators_multi2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/04_5validators_multi2.sh b/tests/results/test_mandatory/04_5validators_multi2.sh deleted file mode 100644 index 3a83e2d5..00000000 --- a/tests/results/test_mandatory/04_5validators_multi2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test (⏳ no) - ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_mandatory/04_5validators_multi3.gitlab.md deleted file mode 100644 index f3a2d97a..00000000 --- a/tests/results/test_mandatory/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/04_5validators_multi3.md b/tests/results/test_mandatory/04_5validators_multi3.md deleted file mode 100644 index 748fbe89..00000000 --- a/tests/results/test_mandatory/04_5validators_multi3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/04_5validators_multi3.sh b/tests/results/test_mandatory/04_5validators_multi3.sh deleted file mode 100644 index 37efa90d..00000000 --- a/tests/results/test_mandatory/04_5validators_multi3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) - ┣━━ (⏳ 1) - ┗━━ (⏳ 2) diff --git a/tests/results/test_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_mandatory/04_5validators_warnings.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory/04_5validators_warnings.md b/tests/results/test_mandatory/04_5validators_warnings.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory/04_5validators_warnings.sh b/tests/results/test_mandatory/04_5validators_warnings.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory/04_5validators_warnings_all.md b/tests/results/test_mandatory/04_5validators_warnings_all.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings_all.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory/04_5validators_warnings_all.sh b/tests/results/test_mandatory/04_5validators_warnings_all.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_mandatory/04_5validators_warnings_all.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/05_0multi_not_uniq.md b/tests/results/test_mandatory/05_0multi_not_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory/05_0multi_not_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/05_0multi_not_uniq.sh b/tests/results/test_mandatory/05_0multi_not_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory/05_0multi_not_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_mandatory/05_0multi_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/05_0multi_uniq.md b/tests/results/test_mandatory/05_0multi_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory/05_0multi_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/05_0multi_uniq.sh b/tests/results/test_mandatory/05_0multi_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory/05_0multi_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md deleted file mode 100644 index 4fc539eb..00000000 --- a/tests/results/test_mandatory/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- no -] diff --git a/tests/results/test_mandatory/12_1auto_save_expert.md b/tests/results/test_mandatory/12_1auto_save_expert.md deleted file mode 100644 index 517523ba..00000000 --- a/tests/results/test_mandatory/12_1auto_save_expert.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_mandatory/12_1auto_save_expert.sh b/tests/results/test_mandatory/12_1auto_save_expert.sh deleted file mode 100644 index 01150e25..00000000 --- a/tests/results/test_mandatory/12_1auto_save_expert.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_mandatory/16_0redefine_description.gitlab.md deleted file mode 100644 index 87010fc4..00000000 --- a/tests/results/test_mandatory/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_0redefine_description.md b/tests/results/test_mandatory/16_0redefine_description.md deleted file mode 100644 index ddc8861c..00000000 --- a/tests/results/test_mandatory/16_0redefine_description.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_0redefine_description.sh b/tests/results/test_mandatory/16_0redefine_description.sh deleted file mode 100644 index d34dc9cf..00000000 --- a/tests/results/test_mandatory/16_0redefine_description.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index 582e4ddb..00000000 --- a/tests/results/test_mandatory/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_3family_empty_at_ends.md b/tests/results/test_mandatory/16_3family_empty_at_ends.md deleted file mode 100644 index 5b5104e5..00000000 --- a/tests/results/test_mandatory/16_3family_empty_at_ends.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_3family_empty_at_ends.sh b/tests/results/test_mandatory/16_3family_empty_at_ends.sh deleted file mode 100644 index b8da1cea..00000000 --- a/tests/results/test_mandatory/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md deleted file mode 100644 index 61200957..00000000 --- a/tests/results/test_mandatory/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5exists_nonexists.md b/tests/results/test_mandatory/16_5exists_nonexists.md deleted file mode 100644 index 7513b68b..00000000 --- a/tests/results/test_mandatory/16_5exists_nonexists.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5exists_nonexists.sh b/tests/results/test_mandatory/16_5exists_nonexists.sh deleted file mode 100644 index f5b51d27..00000000 --- a/tests/results/test_mandatory/16_5exists_nonexists.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_mandatory/16_5exists_redefine.gitlab.md deleted file mode 100644 index 3935b6a0..00000000 --- a/tests/results/test_mandatory/16_5exists_redefine.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a first variable +]: [+ yes +] diff --git a/tests/results/test_mandatory/16_5exists_redefine.md b/tests/results/test_mandatory/16_5exists_redefine.md deleted file mode 100644 index b282e496..00000000 --- a/tests/results/test_mandatory/16_5exists_redefine.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a first variable: yes diff --git a/tests/results/test_mandatory/16_5exists_redefine.sh b/tests/results/test_mandatory/16_5exists_redefine.sh deleted file mode 100644 index ddd827e4..00000000 --- a/tests/results/test_mandatory/16_5exists_redefine.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: yes diff --git a/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_mandatory/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5redefine_calculation.md b/tests/results/test_mandatory/16_5redefine_calculation.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_mandatory/16_5redefine_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5redefine_calculation.sh b/tests/results/test_mandatory/16_5redefine_calculation.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_mandatory/16_5redefine_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_mandatory/16_5redefine_choice.gitlab.md deleted file mode 100644 index 353e222d..00000000 --- a/tests/results/test_mandatory/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_choice.md b/tests/results/test_mandatory/16_5redefine_choice.md deleted file mode 100644 index 5db72d9a..00000000 --- a/tests/results/test_mandatory/16_5redefine_choice.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_choice.sh b/tests/results/test_mandatory/16_5redefine_choice.sh deleted file mode 100644 index 3a629191..00000000 --- a/tests/results/test_mandatory/16_5redefine_choice.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_mandatory/16_5redefine_default.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_mandatory/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5redefine_default.md b/tests/results/test_mandatory/16_5redefine_default.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_mandatory/16_5redefine_default.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/16_5redefine_default.sh b/tests/results/test_mandatory/16_5redefine_default.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_mandatory/16_5redefine_default.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_default_calculation.md b/tests/results/test_mandatory/16_5redefine_default_calculation.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory/16_5redefine_default_calculation.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_default_calculation.sh b/tests/results/test_mandatory/16_5redefine_default_calculation.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_mandatory/16_5redefine_family.gitlab.md deleted file mode 100644 index a69c29c3..00000000 --- a/tests/results/test_mandatory/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_family.md b/tests/results/test_mandatory/16_5redefine_family.md deleted file mode 100644 index b159751c..00000000 --- a/tests/results/test_mandatory/16_5redefine_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_family.sh b/tests/results/test_mandatory/16_5redefine_family.sh deleted file mode 100644 index bb08133f..00000000 --- a/tests/results/test_mandatory/16_5redefine_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 new description - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_mandatory/16_5redefine_help.gitlab.md deleted file mode 100644 index 6c1c3743..00000000 --- a/tests/results/test_mandatory/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_help.md b/tests/results/test_mandatory/16_5redefine_help.md deleted file mode 100644 index 9ee7daa3..00000000 --- a/tests/results/test_mandatory/16_5redefine_help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_help.sh b/tests/results/test_mandatory/16_5redefine_help.sh deleted file mode 100644 index fd4905f8..00000000 --- a/tests/results/test_mandatory/16_5redefine_help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e05d930b..00000000 --- a/tests/results/test_mandatory/16_5redefine_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a variable +]: [+ no +] diff --git a/tests/results/test_mandatory/16_5redefine_hidden.md b/tests/results/test_mandatory/16_5redefine_hidden.md deleted file mode 100644 index a076cf86..00000000 --- a/tests/results/test_mandatory/16_5redefine_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_mandatory/16_5redefine_hidden.sh b/tests/results/test_mandatory/16_5redefine_hidden.sh deleted file mode 100644 index 3c351ac6..00000000 --- a/tests/results/test_mandatory/16_5redefine_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_mandatory/16_5redefine_multi.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_multi.md b/tests/results/test_mandatory/16_5redefine_multi.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory/16_5redefine_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_multi.sh b/tests/results/test_mandatory/16_5redefine_multi.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory/16_5redefine_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.md b/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.sh b/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_mandatory/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_mandatory/16_5test_redefine.gitlab.md deleted file mode 100644 index 2c9ecbe5..00000000 --- a/tests/results/test_mandatory/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5test_redefine.md b/tests/results/test_mandatory/16_5test_redefine.md deleted file mode 100644 index 6626d28c..00000000 --- a/tests/results/test_mandatory/16_5test_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_5test_redefine.sh b/tests/results/test_mandatory/16_5test_redefine.sh deleted file mode 100644 index c9dac4d6..00000000 --- a/tests/results/test_mandatory/16_5test_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_mandatory/16_6choice_redefine.gitlab.md deleted file mode 100644 index 77d8d999..00000000 --- a/tests/results/test_mandatory/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory/16_6choice_redefine.md b/tests/results/test_mandatory/16_6choice_redefine.md deleted file mode 100644 index 380d05d1..00000000 --- a/tests/results/test_mandatory/16_6choice_redefine.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory/16_6choice_redefine.sh b/tests/results/test_mandatory/16_6choice_redefine.sh deleted file mode 100644 index 34e3ba21..00000000 --- a/tests/results/test_mandatory/16_6choice_redefine.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f915f7d0..00000000 --- a/tests/results/test_mandatory/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_6exists_redefine_family.md b/tests/results/test_mandatory/16_6exists_redefine_family.md deleted file mode 100644 index 8a0e5620..00000000 --- a/tests/results/test_mandatory/16_6exists_redefine_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16_6exists_redefine_family.sh b/tests/results/test_mandatory/16_6exists_redefine_family.sh deleted file mode 100644 index 9e86f819..00000000 --- a/tests/results/test_mandatory/16_6exists_redefine_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 new description -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a second family - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16exists_exists.gitlab.md b/tests/results/test_mandatory/16exists_exists.gitlab.md deleted file mode 100644 index 4be431c1..00000000 --- a/tests/results/test_mandatory/16exists_exists.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16exists_exists.md b/tests/results/test_mandatory/16exists_exists.md deleted file mode 100644 index 4c470e07..00000000 --- a/tests/results/test_mandatory/16exists_exists.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/16exists_exists.sh b/tests/results/test_mandatory/16exists_exists.sh deleted file mode 100644 index ab907b7a..00000000 --- a/tests/results/test_mandatory/16exists_exists.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory/17_5redefine_leadership.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory/17_5redefine_leadership.md b/tests/results/test_mandatory/17_5redefine_leadership.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory/17_5redefine_leadership.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory/17_5redefine_leadership.sh b/tests/results/test_mandatory/17_5redefine_leadership.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory/17_5redefine_leadership.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory/20_0family_append.gitlab.md b/tests/results/test_mandatory/20_0family_append.gitlab.md deleted file mode 100644 index 7c84733e..00000000 --- a/tests/results/test_mandatory/20_0family_append.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0family_append.md b/tests/results/test_mandatory/20_0family_append.md deleted file mode 100644 index a8b9719e..00000000 --- a/tests/results/test_mandatory/20_0family_append.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0family_append.sh b/tests/results/test_mandatory/20_0family_append.sh deleted file mode 100644 index a13b229a..00000000 --- a/tests/results/test_mandatory/20_0family_append.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A family - ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family.gitlab.md b/tests/results/test_mandatory/20_0multi_family.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory/20_0multi_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family.md b/tests/results/test_mandatory/20_0multi_family.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory/20_0multi_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family.sh b/tests/results/test_mandatory/20_0multi_family.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory/20_0multi_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_basic.md b/tests/results/test_mandatory/20_0multi_family_basic.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory/20_0multi_family_basic.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_basic.sh b/tests/results/test_mandatory/20_0multi_family_basic.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory/20_0multi_family_basic.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_expert.md b/tests/results/test_mandatory/20_0multi_family_expert.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory/20_0multi_family_expert.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_expert.sh b/tests/results/test_mandatory/20_0multi_family_expert.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory/20_0multi_family_expert.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_mandatory/20_0multi_family_order.gitlab.md deleted file mode 100644 index 94d1798c..00000000 --- a/tests/results/test_mandatory/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_order.md b/tests/results/test_mandatory/20_0multi_family_order.md deleted file mode 100644 index 70a49206..00000000 --- a/tests/results/test_mandatory/20_0multi_family_order.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0multi_family_order.sh b/tests/results/test_mandatory/20_0multi_family_order.sh deleted file mode 100644 index d04191f9..00000000 --- a/tests/results/test_mandatory/20_0multi_family_order.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a sub family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 5ca71d92..00000000 --- a/tests/results/test_mandatory/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/20_0validators_differ_redefine.md b/tests/results/test_mandatory/20_0validators_differ_redefine.md deleted file mode 100644 index 0cafcb81..00000000 --- a/tests/results/test_mandatory/20_0validators_differ_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/20_0validators_differ_redefine.sh b/tests/results/test_mandatory/20_0validators_differ_redefine.sh deleted file mode 100644 index 32cb5377..00000000 --- a/tests/results/test_mandatory/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index bd1df785..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/20_2family_looks_like_dynamic.md b/tests/results/test_mandatory/20_2family_looks_like_dynamic.md deleted file mode 100644 index a8e625d2..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/20_2family_looks_like_dynamic.sh b/tests/results/test_mandatory/20_2family_looks_like_dynamic.sh deleted file mode 100644 index f0e10846..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┣━━ 📓 dynamic: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 2df94454..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/20_2family_looks_like_variable.md b/tests/results/test_mandatory/20_2family_looks_like_variable.md deleted file mode 100644 index 3a136486..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory/20_2family_looks_like_variable.sh b/tests/results/test_mandatory/20_2family_looks_like_variable.sh deleted file mode 100644 index 4244d0a5..00000000 --- a/tests/results/test_mandatory/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory/20_7help_family.gitlab.md b/tests/results/test_mandatory/20_7help_family.gitlab.md deleted file mode 100644 index cbf4068a..00000000 --- a/tests/results/test_mandatory/20_7help_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_7help_family.md b/tests/results/test_mandatory/20_7help_family.md deleted file mode 100644 index 41f2acc7..00000000 --- a/tests/results/test_mandatory/20_7help_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_7help_family.sh b/tests/results/test_mandatory/20_7help_family.sh deleted file mode 100644 index c9bbc685..00000000 --- a/tests/results/test_mandatory/20_7help_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 the first family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 the second family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_mandatory/20_9default_information_parent.gitlab.md deleted file mode 100644 index a560c5af..00000000 --- a/tests/results/test_mandatory/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_9default_information_parent.md b/tests/results/test_mandatory/20_9default_information_parent.md deleted file mode 100644 index e67bf81e..00000000 --- a/tests/results/test_mandatory/20_9default_information_parent.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/20_9default_information_parent.sh b/tests/results/test_mandatory/20_9default_information_parent.sh deleted file mode 100644 index ac1e709e..00000000 --- a/tests/results/test_mandatory/20_9default_information_parent.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_9family_absolute.gitlab.md b/tests/results/test_mandatory/20_9family_absolute.gitlab.md deleted file mode 100644 index ded677c1..00000000 --- a/tests/results/test_mandatory/20_9family_absolute.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: [- string6 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: [- string5 -] ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_mandatory/20_9family_absolute.md b/tests/results/test_mandatory/20_9family_absolute.md deleted file mode 100644 index 1d3f37e4..00000000 --- a/tests/results/test_mandatory/20_9family_absolute.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: string6 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: string5 ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_mandatory/20_9family_absolute.sh b/tests/results/test_mandatory/20_9family_absolute.sh deleted file mode 100644 index 9c784385..00000000 --- a/tests/results/test_mandatory/20_9family_absolute.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 first variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a family -┃ ┣━━ 📓 a second variable: string6 ◀ loaded from rougail-test -┃ ┗━━ 📂 a sub family -┃  ┗━━ 📓 third variable: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a variable2: string1 ◀ loaded from rougail-test (⏳ string6) - ┣━━ 📓 var3: string5 ◀ loaded from rougail-test (⏳ string4) - ┗━━ 📂 a sub family -  ┗━━ 📓 fourth variable: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string5) diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 6887d877..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.md b/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f48c6a65..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.sh b/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 85c11674..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 2cf20ed9..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :open_file_folder: [+ possibly hidden family +] - - :open_file_folder: [+ a subfamily +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index a1614c19..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: null diff --git a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index 8d7fd394..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: null diff --git a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 010bce1f..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index b65ff4d8..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 95a9d262..00000000 --- a/tests/results/test_mandatory/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition.md b/tests/results/test_mandatory/24_0family_mandatory_condition.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition.sh b/tests/results/test_mandatory/24_0family_mandatory_condition.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index 14412f5d..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.md b/tests/results/test_mandatory/24_0family_mandatory_condition_variable.md deleted file mode 100644 index b1c4a25f..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.sh b/tests/results/test_mandatory/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index 2970d2e4..00000000 --- a/tests/results/test_mandatory/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index 29c01c5b..00000000 --- a/tests/results/test_mandatory/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory/24_7validators_variable_optional.md b/tests/results/test_mandatory/24_7validators_variable_optional.md deleted file mode 100644 index 1beb7638..00000000 --- a/tests/results/test_mandatory/24_7validators_variable_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory/24_7validators_variable_optional.sh b/tests/results/test_mandatory/24_7validators_variable_optional.sh deleted file mode 100644 index 67ce7188..00000000 --- a/tests/results/test_mandatory/24_7validators_variable_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test - ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_mandatory/40_0leadership.gitlab.md b/tests/results/test_mandatory/40_0leadership.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_mandatory/40_0leadership.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership.md b/tests/results/test_mandatory/40_0leadership.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_mandatory/40_0leadership.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership.sh b/tests/results/test_mandatory/40_0leadership.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_mandatory/40_0leadership.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_mandatory/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_diff_name.md b/tests/results/test_mandatory/40_0leadership_diff_name.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_mandatory/40_0leadership_diff_name.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_diff_name.sh b/tests/results/test_mandatory/40_0leadership_diff_name.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_mandatory/40_0leadership_diff_name.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 7e5f52ab..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.md b/tests/results/test_mandatory/40_0leadership_follower_default_calculation.md deleted file mode 100644 index f880cd7e..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.sh b/tests/results/test_mandatory/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index a0bc32a9..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 7d310879..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_value.md b/tests/results/test_mandatory/40_0leadership_follower_default_value.md deleted file mode 100644 index 95c37305..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/40_0leadership_follower_default_value.sh b/tests/results/test_mandatory/40_0leadership_follower_default_value.sh deleted file mode 100644 index 5fb71c9a..00000000 --- a/tests/results/test_mandatory/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 1709a587..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_0leadership_leader_follower.md b/tests/results/test_mandatory/40_0leadership_leader_follower.md deleted file mode 100644 index 36414b39..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_0leadership_leader_follower.sh b/tests/results/test_mandatory/40_0leadership_leader_follower.sh deleted file mode 100644 index fd689b3a..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 04e45fb3..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_leader_not_multi.md b/tests/results/test_mandatory/40_0leadership_leader_not_multi.md deleted file mode 100644 index 63e543a5..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_leader_not_multi.sh b/tests/results/test_mandatory/40_0leadership_leader_not_multi.sh deleted file mode 100644 index e088b449..00000000 --- a/tests/results/test_mandatory/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 general -┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📂 general1 - ┗━━ 📂 leader -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 leader -   ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md deleted file mode 100644 index d43eb4bf..00000000 --- a/tests/results/test_mandatory/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_reduce.md b/tests/results/test_mandatory/40_0leadership_reduce.md deleted file mode 100644 index 88453886..00000000 --- a/tests/results/test_mandatory/40_0leadership_reduce.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_0leadership_reduce.sh b/tests/results/test_mandatory/40_0leadership_reduce.sh deleted file mode 100644 index ee887294..00000000 --- a/tests/results/test_mandatory/40_0leadership_reduce.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -  ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index 59359dfe..00000000 --- a/tests/results/test_mandatory/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_1leadership_append_follower.md b/tests/results/test_mandatory/40_1leadership_append_follower.md deleted file mode 100644 index 39a9eb94..00000000 --- a/tests/results/test_mandatory/40_1leadership_append_follower.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_1leadership_append_follower.sh b/tests/results/test_mandatory/40_1leadership_append_follower.sh deleted file mode 100644 index 38bde772..00000000 --- a/tests/results/test_mandatory/40_1leadership_append_follower.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test - ┗━━ 📂 the leader -  ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -  ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index.md b/tests/results/test_mandatory/40_2leadership_calculation_index.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index.sh b/tests/results/test_mandatory/40_2leadership_calculation_index.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index_2.md b/tests/results/test_mandatory/40_2leadership_calculation_index_2.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory/40_2leadership_calculation_index_2.sh b/tests/results/test_mandatory/40_2leadership_calculation_index_2.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_mandatory/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi.md b/tests/results/test_mandatory/40_6leadership_follower_multi.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi.sh b/tests/results/test_mandatory/40_6leadership_follower_multi.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_mandatory/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md deleted file mode 100644 index cdab71d7..00000000 --- a/tests/results/test_mandatory/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory/40_8calculation_boolean.md b/tests/results/test_mandatory/40_8calculation_boolean.md deleted file mode 100644 index 8f229c20..00000000 --- a/tests/results/test_mandatory/40_8calculation_boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory/40_8calculation_boolean.sh b/tests/results/test_mandatory/40_8calculation_boolean.sh deleted file mode 100644 index fa059347..00000000 --- a/tests/results/test_mandatory/40_8calculation_boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first multi variable: -┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) -┃ ┗━━ (⏳ false) -┗━━ 📓 a second multi variable: - ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index 9ab6f966..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable.md b/tests/results/test_mandatory/40_8calculation_multi_variable.md deleted file mode 100644 index ea76a3f7..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable.sh b/tests/results/test_mandatory/40_8calculation_multi_variable.sh deleted file mode 100644 index e873131f..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index af08eb4f..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e9522140..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.sh b/tests/results/test_mandatory/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 8d9594cf..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a family - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index d8f02022..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.md b/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 9dc630c0..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.sh b/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index 12a80d56..00000000 --- a/tests/results/test_mandatory/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 first family -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 second family - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index db88a660..00000000 --- a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index fa4bb5d7..00000000 --- a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index c1db45ba..00000000 --- a/tests/results/test_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,24 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 19c6318b..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index cf5fbdfd..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 471eb20e..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index cfd5439a..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index 8750db38..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 2faff4bf..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 23c2ad34..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test -- :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index d64f4d5b..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test -- :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index 379f6858..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 leader -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) -┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) -┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 leader -┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test -┗━━ 📓 variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 6ff0ca56..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 9b1f660b..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 91efcba4..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index ac2dde3e..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index d41eea3b..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index 49e9a5b9..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.md b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.sh b/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 149cb498..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable.md b/tests/results/test_mandatory/40_9leadership-calculation-variable.md deleted file mode 100644 index 5ba581c7..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable.sh b/tests/results/test_mandatory/40_9leadership-calculation-variable.sh deleted file mode 100644 index 6b4cdee9..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a calculated variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 37bf1d4d..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 3dcd76a1..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index ad0e2301..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 81fbb1fa..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index 06e478ec..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 5c19cd76..00000000 --- a/tests/results/test_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,34 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_mandatory/41_0choice_leader.gitlab.md deleted file mode 100644 index 629de092..00000000 --- a/tests/results/test_mandatory/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/41_0choice_leader.md b/tests/results/test_mandatory/41_0choice_leader.md deleted file mode 100644 index 72715a35..00000000 --- a/tests/results/test_mandatory/41_0choice_leader.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_mandatory/41_0choice_leader.sh b/tests/results/test_mandatory/41_0choice_leader.sh deleted file mode 100644 index 4498a73f..00000000 --- a/tests/results/test_mandatory/41_0choice_leader.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 The leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory/44_0leadership_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory/44_0leadership_hidden.md b/tests/results/test_mandatory/44_0leadership_hidden.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory/44_0leadership_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory/44_0leadership_hidden.sh b/tests/results/test_mandatory/44_0leadership_hidden.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory/44_0leadership_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory/44_0leadership_leader_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory/44_0leadership_leader_hidden.md b/tests/results/test_mandatory/44_0leadership_leader_hidden.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory/44_0leadership_leader_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory/44_0leadership_leader_hidden.sh b/tests/results/test_mandatory/44_0leadership_leader_hidden.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory/44_0leadership_leader_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.md b/tests/results/test_mandatory/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.sh b/tests/results/test_mandatory/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory/44_1leadership_append_hidden_follower.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index ee9d9dca..00000000 --- a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.md b/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index b2d08e0e..00000000 --- a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.sh b/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index a7273d4f..00000000 --- a/tests/results/test_mandatory/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 aleader - ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) - ┣━━ 📂 aleader - ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 aleader -  ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_4leadership_mandatory.md b/tests/results/test_mandatory/44_4leadership_mandatory.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_4leadership_mandatory.sh b/tests/results/test_mandatory/44_4leadership_mandatory.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_4leadership_mandatory_follower.md b/tests/results/test_mandatory/44_4leadership_mandatory_follower.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_4leadership_mandatory_follower.sh b/tests/results/test_mandatory/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_mandatory/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 0db07d7b..00000000 --- a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.md b/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index a2404e68..00000000 --- a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index a2636a45..00000000 --- a/tests/results/test_mandatory/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index d4cd7eb2..00000000 --- a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.md b/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index a58b3f36..00000000 --- a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index fa331e78..00000000 --- a/tests/results/test_mandatory/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic.md b/tests/results/test_mandatory/60_0family_dynamic.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic.sh b/tests/results/test_mandatory/60_0family_dynamic.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1.md b/tests/results/test_mandatory/60_0family_dynamic_1_1.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1.sh b/tests/results/test_mandatory/60_0family_dynamic_1_1.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.md b/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.sh b/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index af851262..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_empty.md b/tests/results/test_mandatory/60_0family_dynamic_empty.md deleted file mode 100644 index 08a9535a..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_empty.sh b/tests/results/test_mandatory/60_0family_dynamic_empty.sh deleted file mode 100644 index 6fbf1253..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index d1c55ac7..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.md b/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index efb43e1b..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.sh b/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index fa8ff1f3..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) -┣━━ 📂 A dynamic family -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┗━━ 📂 A dynamic family - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index d89bbdb3..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description.md b/tests/results/test_mandatory/60_0family_dynamic_no_description.md deleted file mode 100644 index 812b4d57..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description.sh b/tests/results/test_mandatory/60_0family_dynamic_no_description.sh deleted file mode 100644 index eb42dd7e..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index bc4e0c06..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.md b/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 5a2dd6ba..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.sh b/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index d21a390e..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index a8ad32a5..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: [+ A suffix variable +]: - - [+ val1 +] - - [+ val2 +] -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.md b/tests/results/test_mandatory/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 5a905b2f..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 - - val2 -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.sh b/tests/results/test_mandatory/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index 788fcbdf..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 -┃ ┗━━ val2 -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index 20e60b3c..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_static.md b/tests/results/test_mandatory/60_0family_dynamic_static.md deleted file mode 100644 index dc79f348..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_static.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_static.sh b/tests/results/test_mandatory/60_0family_dynamic_static.sh deleted file mode 100644 index 7aa2954b..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_static.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_test.md b/tests/results/test_mandatory/60_0family_dynamic_test.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_test.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_test.sh b/tests/results/test_mandatory/60_0family_dynamic_test.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_test.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 3eca313d..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_upper_char.md b/tests/results/test_mandatory/60_0family_dynamic_upper_char.md deleted file mode 100644 index f398f627..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_upper_char.sh b/tests/results/test_mandatory/60_0family_dynamic_upper_char.sh deleted file mode 100644 index ec5aa3ca..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) -┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 4d10ad3e..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.md b/tests/results/test_mandatory/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 96839d92..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.sh b/tests/results/test_mandatory/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 6345b4d7..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 5eb83d83..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.md b/tests/results/test_mandatory/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 6dd84d40..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.sh b/tests/results/test_mandatory/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index c263e940..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index bc0e5952..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index 720a9821..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.sh b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index b608466a..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index d2943697..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 9aa6b202..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index 132f62e5..00000000 --- a/tests/results/test_mandatory/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_mandatory/60_0family_hidden.gitlab.md deleted file mode 100644 index ae57b551..00000000 --- a/tests/results/test_mandatory/60_0family_hidden.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a family +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_mandatory/60_0family_hidden.md b/tests/results/test_mandatory/60_0family_hidden.md deleted file mode 100644 index e9be0a15..00000000 --- a/tests/results/test_mandatory/60_0family_hidden.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a family - - :notebook: a variable: null diff --git a/tests/results/test_mandatory/60_0family_hidden.sh b/tests/results/test_mandatory/60_0family_hidden.sh deleted file mode 100644 index 6d5a0221..00000000 --- a/tests/results/test_mandatory/60_0family_hidden.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 a variable: null diff --git a/tests/results/test_mandatory/60_0family_mode.gitlab.md b/tests/results/test_mandatory/60_0family_mode.gitlab.md deleted file mode 100644 index e6cd7fa4..00000000 --- a/tests/results/test_mandatory/60_0family_mode.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory/60_0family_mode.md b/tests/results/test_mandatory/60_0family_mode.md deleted file mode 100644 index f76c8324..00000000 --- a/tests/results/test_mandatory/60_0family_mode.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory/60_0family_mode.sh b/tests/results/test_mandatory/60_0family_mode.sh deleted file mode 100644 index b4378976..00000000 --- a/tests/results/test_mandatory/60_0family_mode.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index b45560fd..00000000 --- a/tests/results/test_mandatory/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_1family_dynamic_jinja.md b/tests/results/test_mandatory/60_1family_dynamic_jinja.md deleted file mode 100644 index fa7f0864..00000000 --- a/tests/results/test_mandatory/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory/60_1family_dynamic_jinja.sh b/tests/results/test_mandatory/60_1family_dynamic_jinja.sh deleted file mode 100644 index 92019a09..00000000 --- a/tests/results/test_mandatory/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 A dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index 5af07e18..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 04e40e16..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 46f3925c..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index a147d524..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index a1d2e634..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a792c807..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 5fdbf67a..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index ce8a68f4..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index e07d8b43..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 72143984..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 2bd02540..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index b7749f03..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index da3b06ca..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc.md deleted file mode 100644 index 1e9d9e20..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.sh b/tests/results/test_mandatory/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4d05d0b5..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index b6b7d9fc..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index a5865a38..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index 4e06aea3..00000000 --- a/tests/results/test_mandatory/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index 936caa53..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_description.md b/tests/results/test_mandatory/60_5family_dynamic_calc_description.md deleted file mode 100644 index 3a12c9e1..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_description.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 526482f2..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index bebc24fc..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 56a75dec..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 368aed0c..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 8c17123a..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index bf21995b..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 1ce047d1..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index 3ee22e21..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: dynval1: [+ {} +] -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index e1f9e7c5..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :notebook: dynval1: {} -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index f6dfd744..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 dynval1: {} -┗━━ 📂 dynval2 - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 1e9176a2..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index 682154e6..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index d9c20648..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index a453f8c4..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 485ed622..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index f7cd4f2f..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index bd37ad38..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable.md deleted file mode 100644 index 3b4c711d..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 2c88b793..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 502177dd..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index ec4f12df..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index 4f9bb00f..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic famify for val2 - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index 3dee4508..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 4a3151fa..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index ba054a06..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index 84f9b3c0..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index ff0a9f55..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 5d8b38a3..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index caefb71e..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: [+ a dynamic family +] - - :notebook: [+ a variable +]: [+ null +] - - :open_file_folder: [+ a family +] - - :notebook: [+ a new variable +]: [+ null +] diff --git a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.md b/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index 89d5253c..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable: null - - :open_file_folder: a family - - :notebook: a new variable: null diff --git a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index dbe581a8..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┣━━ 📓 a variable: null - ┗━━ 📂 a family -  ┗━━ 📓 a new variable: null diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index c55d0ae6..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 6071368d..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 17e9909a..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 124eb013..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index e925b544..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index ddad282b..00000000 --- a/tests/results/test_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 asuffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index e7891e7b..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership.md b/tests/results/test_mandatory/60_6family_dynamic_leadership.md deleted file mode 100644 index 1531b7ff..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership.sh b/tests/results/test_mandatory/60_6family_dynamic_leadership.sh deleted file mode 100644 index ae685832..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 2cb72da4..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.md b/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index 2bd221af..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.sh b/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index a2c146ad..00000000 --- a/tests/results/test_mandatory/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 6a7898b7..00000000 --- a/tests/results/test_mandatory/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_9family_dynamic_calc_both.md b/tests/results/test_mandatory/60_9family_dynamic_calc_both.md deleted file mode 100644 index 290574db..00000000 --- a/tests/results/test_mandatory/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/60_9family_dynamic_calc_both.sh b/tests/results/test_mandatory/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 54091b4b..00000000 --- a/tests/results/test_mandatory/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index 24be4030..00000000 --- a/tests/results/test_mandatory/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory/68_0family_leadership_mode.md b/tests/results/test_mandatory/68_0family_leadership_mode.md deleted file mode 100644 index 56af6e36..00000000 --- a/tests/results/test_mandatory/68_0family_leadership_mode.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory/68_0family_leadership_mode.sh b/tests/results/test_mandatory/68_0family_leadership_mode.sh deleted file mode 100644 index c1a7f77e..00000000 --- a/tests/results/test_mandatory/68_0family_leadership_mode.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┗━━ 📂 A leader -  ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_0version_underscore.md b/tests/results/test_mandatory_secrets/00_0version_underscore.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/00_0version_underscore.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_mandatory_secrets/00_0version_underscore.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/00_0version_underscore.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md deleted file mode 100644 index 1b86c63e..00000000 --- a/tests/results/test_mandatory_secrets/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_1empty_variable.md b/tests/results/test_mandatory_secrets/00_1empty_variable.md deleted file mode 100644 index 8268a71a..00000000 --- a/tests/results/test_mandatory_secrets/00_1empty_variable.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_mandatory_secrets/00_1empty_variable.sh deleted file mode 100644 index b0eed8c1..00000000 --- a/tests/results/test_mandatory_secrets/00_1empty_variable.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md deleted file mode 100644 index f92d0ee5..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated.md b/tests/results/test_mandatory_secrets/00_2default_calculated.md deleted file mode 100644 index 48a68168..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_mandatory_secrets/00_2default_calculated.sh deleted file mode 100644 index 6768e633..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index 01c66533..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.md b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.md deleted file mode 100644 index b7756e16..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh deleted file mode 100644 index 9d91c1da..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 8ff93bcd..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: [+ leadership +] - - :open_file_folder: [+ a first variable +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: [+ a first variable +]: [+ a_value +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.md b/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.md deleted file mode 100644 index d6ddd1fa..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leadership - - :open_file_folder: a first variable - - :notebook: a first variable: a_value - - :notebook: a first variable: a_value -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_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 deleted file mode 100644 index 92f847f1..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📂 leadership -┃ ┗━━ 📂 a first variable -┃  ┣━━ 📓 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_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_variable.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index 236f5765..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.md deleted file mode 100644 index a52ab165..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.sh deleted file mode 100644 index d1dd8bbd..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 024f26fa..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 699fa959..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 404769d9..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.md b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_mandatory_secrets/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md deleted file mode 100644 index b9bd4cd9..00000000 --- a/tests/results/test_mandatory_secrets/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_4load_subfolder.md b/tests/results/test_mandatory_secrets/00_4load_subfolder.md deleted file mode 100644 index 659da021..00000000 --- a/tests/results/test_mandatory_secrets/00_4load_subfolder.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_mandatory_secrets/00_4load_subfolder.sh deleted file mode 100644 index 83e10216..00000000 --- a/tests/results/test_mandatory_secrets/00_4load_subfolder.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md deleted file mode 100644 index a3648ea1..00000000 --- a/tests/results/test_mandatory_secrets/00_5load_notype.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory_secrets/00_5load_notype.md b/tests/results/test_mandatory_secrets/00_5load_notype.md deleted file mode 100644 index e47f6c1c..00000000 --- a/tests/results/test_mandatory_secrets/00_5load_notype.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory_secrets/00_5load_notype.sh b/tests/results/test_mandatory_secrets/00_5load_notype.sh deleted file mode 100644 index 08ebb456..00000000 --- a/tests/results/test_mandatory_secrets/00_5load_notype.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md deleted file mode 100644 index fec3bc0b..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/00_6boolean.md b/tests/results/test_mandatory_secrets/00_6boolean.md deleted file mode 100644 index 17404950..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/00_6boolean.sh b/tests/results/test_mandatory_secrets/00_6boolean.sh deleted file mode 100644 index 45ac0eb3..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 6635fde9..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.md b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.md deleted file mode 100644 index be600de0..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh deleted file mode 100644 index 7b54f607..00000000 --- a/tests/results/test_mandatory_secrets/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice.gitlab.md deleted file mode 100644 index caa9a97c..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test -- :notebook: the third variable: [- a -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory_secrets/00_6choice.md b/tests/results/test_mandatory_secrets/00_6choice.md deleted file mode 100644 index 2a397ade..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test -- :notebook: the third variable: a ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory_secrets/00_6choice.sh b/tests/results/test_mandatory_secrets/00_6choice.sh deleted file mode 100644 index 74d6574b..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┣━━ 📓 the second variable: a ◀ loaded from rougail-test -┣━━ 📓 the third variable: a ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_6choice_calculation.md b/tests/results/test_mandatory_secrets/00_6choice_calculation.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_mandatory_secrets/00_6choice_calculation.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md deleted file mode 100644 index 3daf20b1..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_link.md b/tests/results/test_mandatory_secrets/00_6choice_link.md deleted file mode 100644 index efd2e064..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_link.sh b/tests/results/test_mandatory_secrets/00_6choice_link.sh deleted file mode 100644 index 2b93f3e5..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md deleted file mode 100644 index a71e9b27..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable.md b/tests/results/test_mandatory_secrets/00_6choice_variable.md deleted file mode 100644 index 37fb9257..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_mandatory_secrets/00_6choice_variable.sh deleted file mode 100644 index 05afa0fd..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 20258acb..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link.md deleted file mode 100644 index c0f5fe9b..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link.sh b/tests/results/test_mandatory_secrets/00_6choice_variable_link.sh deleted file mode 100644 index e2b60964..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 52be8a70..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.md b/tests/results/test_mandatory_secrets/00_6choice_variable_link2.md deleted file mode 100644 index 8a0fc5b2..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.sh b/tests/results/test_mandatory_secrets/00_6choice_variable_link2.sh deleted file mode 100644 index f79a8ff9..00000000 --- a/tests/results/test_mandatory_secrets/00_6choice_variable_link2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 family - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_mandatory_secrets/00_6custom.gitlab.md deleted file mode 100644 index 0c7d688f..00000000 --- a/tests/results/test_mandatory_secrets/00_6custom.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/00_6custom.md b/tests/results/test_mandatory_secrets/00_6custom.md deleted file mode 100644 index 84e63614..00000000 --- a/tests/results/test_mandatory_secrets/00_6custom.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/00_6custom.sh b/tests/results/test_mandatory_secrets/00_6custom.sh deleted file mode 100644 index ff540e67..00000000 --- a/tests/results/test_mandatory_secrets/00_6custom.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname.md b/tests/results/test_mandatory_secrets/00_6domainname.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname.sh b/tests/results/test_mandatory_secrets/00_6domainname.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname_params.md b/tests/results/test_mandatory_secrets/00_6domainname_params.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname_params.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_mandatory_secrets/00_6domainname_params.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_mandatory_secrets/00_6domainname_params.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_mandatory_secrets/00_6float.gitlab.md deleted file mode 100644 index 1d998460..00000000 --- a/tests/results/test_mandatory_secrets/00_6float.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_mandatory_secrets/00_6float.md b/tests/results/test_mandatory_secrets/00_6float.md deleted file mode 100644 index 199a039f..00000000 --- a/tests/results/test_mandatory_secrets/00_6float.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_mandatory_secrets/00_6float.sh b/tests/results/test_mandatory_secrets/00_6float.sh deleted file mode 100644 index 464bb5f7..00000000 --- a/tests/results/test_mandatory_secrets/00_6float.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_mandatory_secrets/00_6integer.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_mandatory_secrets/00_6integer.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/00_6integer.md b/tests/results/test_mandatory_secrets/00_6integer.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_mandatory_secrets/00_6integer.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/00_6integer.sh b/tests/results/test_mandatory_secrets/00_6integer.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_mandatory_secrets/00_6integer.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_mandatory_secrets/00_6ip.gitlab.md deleted file mode 100644 index 884516c1..00000000 --- a/tests/results/test_mandatory_secrets/00_6ip.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_mandatory_secrets/00_6ip.md b/tests/results/test_mandatory_secrets/00_6ip.md deleted file mode 100644 index 99cd0d71..00000000 --- a/tests/results/test_mandatory_secrets/00_6ip.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_mandatory_secrets/00_6ip.sh b/tests/results/test_mandatory_secrets/00_6ip.sh deleted file mode 100644 index b15c8948..00000000 --- a/tests/results/test_mandatory_secrets/00_6ip.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) -┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) -┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_mandatory_secrets/00_6network.gitlab.md deleted file mode 100644 index 6bc5530c..00000000 --- a/tests/results/test_mandatory_secrets/00_6network.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_mandatory_secrets/00_6network.md b/tests/results/test_mandatory_secrets/00_6network.md deleted file mode 100644 index 3e6ab954..00000000 --- a/tests/results/test_mandatory_secrets/00_6network.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_mandatory_secrets/00_6network.sh b/tests/results/test_mandatory_secrets/00_6network.sh deleted file mode 100644 index 855ab3a3..00000000 --- a/tests/results/test_mandatory_secrets/00_6network.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) -┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) -┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_mandatory_secrets/00_6number.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_mandatory_secrets/00_6number.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/00_6number.md b/tests/results/test_mandatory_secrets/00_6number.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_mandatory_secrets/00_6number.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/00_6number.sh b/tests/results/test_mandatory_secrets/00_6number.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_mandatory_secrets/00_6number.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_mandatory_secrets/00_6port.gitlab.md deleted file mode 100644 index 11835540..00000000 --- a/tests/results/test_mandatory_secrets/00_6port.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: [- 80 -] ← loaded from rougail-test -- :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_mandatory_secrets/00_6port.md b/tests/results/test_mandatory_secrets/00_6port.md deleted file mode 100644 index ca62353b..00000000 --- a/tests/results/test_mandatory_secrets/00_6port.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: 80 ← loaded from rougail-test -- :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_mandatory_secrets/00_6port.sh b/tests/results/test_mandatory_secrets/00_6port.sh deleted file mode 100644 index f48b2821..00000000 --- a/tests/results/test_mandatory_secrets/00_6port.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test -┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md deleted file mode 100644 index 7b610971..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_mandatory_secrets/00_6regexp.md b/tests/results/test_mandatory_secrets/00_6regexp.md deleted file mode 100644 index 1d3fe3a0..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_mandatory_secrets/00_6regexp.sh b/tests/results/test_mandatory_secrets/00_6regexp.sh deleted file mode 100644 index 248d53f8..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md deleted file mode 100644 index 0bcef460..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_mandatory_secrets/00_6regexp_link.md b/tests/results/test_mandatory_secrets/00_6regexp_link.md deleted file mode 100644 index 2c6dd6e1..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_mandatory_secrets/00_6regexp_link.sh b/tests/results/test_mandatory_secrets/00_6regexp_link.sh deleted file mode 100644 index b622acdb..00000000 --- a/tests/results/test_mandatory_secrets/00_6regexp_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) -┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_mandatory_secrets/00_6secret.gitlab.md deleted file mode 100644 index 97f97ca8..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- ********** -] ← loaded from rougail-test -- :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_mandatory_secrets/00_6secret.md b/tests/results/test_mandatory_secrets/00_6secret.md deleted file mode 100644 index 86f90c55..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: ********** ← loaded from rougail-test -- :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_mandatory_secrets/00_6secret.sh b/tests/results/test_mandatory_secrets/00_6secret.sh deleted file mode 100644 index 1052d915..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test -┗━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md deleted file mode 100644 index d8340fef..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret_param.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- ********** -] ← loaded from rougail-test -- :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) -- :notebook: the third variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_mandatory_secrets/00_6secret_param.md b/tests/results/test_mandatory_secrets/00_6secret_param.md deleted file mode 100644 index 6198e573..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret_param.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: ********** ← loaded from rougail-test -- :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) -- :notebook: the third variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_mandatory_secrets/00_6secret_param.sh b/tests/results/test_mandatory_secrets/00_6secret_param.sh deleted file mode 100644 index bf734def..00000000 --- a/tests/results/test_mandatory_secrets/00_6secret_param.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test -┣━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) -┗━━ 📓 the third variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_mandatory_secrets/00_6string.gitlab.md deleted file mode 100644 index 0f337dd7..00000000 --- a/tests/results/test_mandatory_secrets/00_6string.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test -- :notebook: the third variable: [- string1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/00_6string.md b/tests/results/test_mandatory_secrets/00_6string.md deleted file mode 100644 index 3d20a7b6..00000000 --- a/tests/results/test_mandatory_secrets/00_6string.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test -- :notebook: the third variable: string1 ← loaded from rougail-test -- :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/00_6string.sh b/tests/results/test_mandatory_secrets/00_6string.sh deleted file mode 100644 index 1180cc59..00000000 --- a/tests/results/test_mandatory_secrets/00_6string.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md deleted file mode 100644 index 7e65279f..00000000 --- a/tests/results/test_mandatory_secrets/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory_secrets/00_7choice_quote.md b/tests/results/test_mandatory_secrets/00_7choice_quote.md deleted file mode 100644 index d68a08e9..00000000 --- a/tests/results/test_mandatory_secrets/00_7choice_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_mandatory_secrets/00_7choice_quote.sh deleted file mode 100644 index 3fd4be6b..00000000 --- a/tests/results/test_mandatory_secrets/00_7choice_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_mandatory_secrets/00_7help.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory_secrets/00_7help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help.md b/tests/results/test_mandatory_secrets/00_7help.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory_secrets/00_7help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help.sh b/tests/results/test_mandatory_secrets/00_7help.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory_secrets/00_7help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_quote.md b/tests/results/test_mandatory_secrets/00_7help_quote.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_quote.sh b/tests/results/test_mandatory_secrets/00_7help_quote.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md deleted file mode 100644 index ac1d4b90..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_sup.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first : [- string1 -] ← loaded from rougail-test -- :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_sup.md b/tests/results/test_mandatory_secrets/00_7help_sup.md deleted file mode 100644 index 40eb4168..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_sup.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first : string1 ← loaded from rougail-test -- :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7help_sup.sh b/tests/results/test_mandatory_secrets/00_7help_sup.sh deleted file mode 100644 index 81ef100f..00000000 --- a/tests/results/test_mandatory_secrets/00_7help_sup.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first : string1 ◀ loaded from rougail-test -┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md deleted file mode 100644 index f189f108..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote.md b/tests/results/test_mandatory_secrets/00_7value_doublequote.md deleted file mode 100644 index 85e6ada7..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote.sh deleted file mode 100644 index 0e461397..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 3e7e1a8b..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote2.md b/tests/results/test_mandatory_secrets/00_7value_doublequote2.md deleted file mode 100644 index 1cb8226d..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh deleted file mode 100644 index c062e186..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 25077480..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote3.md b/tests/results/test_mandatory_secrets/00_7value_doublequote3.md deleted file mode 100644 index ca15bf9a..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh deleted file mode 100644 index 6ce54613..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_doublequote3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md deleted file mode 100644 index 0c1efcaf..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory_secrets/00_7value_quote.md b/tests/results/test_mandatory_secrets/00_7value_quote.md deleted file mode 100644 index c449b848..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_mandatory_secrets/00_7value_quote.sh b/tests/results/test_mandatory_secrets/00_7value_quote.sh deleted file mode 100644 index 9f81028f..00000000 --- a/tests/results/test_mandatory_secrets/00_7value_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_8calculation_information.md b/tests/results/test_mandatory_secrets/00_8calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/00_8calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_mandatory_secrets/00_8calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/00_8calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_mandatory_secrets/00_8test.gitlab.md deleted file mode 100644 index c0815f1f..00000000 --- a/tests/results/test_mandatory_secrets/00_8test.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- test -] ← loaded from rougail-test -- :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- test1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_8test.md b/tests/results/test_mandatory_secrets/00_8test.md deleted file mode 100644 index 0cf7b6e4..00000000 --- a/tests/results/test_mandatory_secrets/00_8test.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: test ← loaded from rougail-test -- :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: test1 ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_8test.sh b/tests/results/test_mandatory_secrets/00_8test.sh deleted file mode 100644 index 410d4210..00000000 --- a/tests/results/test_mandatory_secrets/00_8test.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: test ◀ loaded from rougail-test -┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the sixth variable: - ┣━━ test1 ◀ loaded from rougail-test - ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index ac21615c..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.md b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.md deleted file mode 100644 index 03616d6d..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh deleted file mode 100644 index f900f928..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test - ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md deleted file mode 100644 index 287ac4a2..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_mandatory_secrets/00_9choice_variables.md b/tests/results/test_mandatory_secrets/00_9choice_variables.md deleted file mode 100644 index f2a80522..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variables.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_mandatory_secrets/00_9choice_variables.sh deleted file mode 100644 index cd36825e..00000000 --- a/tests/results/test_mandatory_secrets/00_9choice_variables.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md deleted file mode 100644 index 39c88fc8..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation.md b/tests/results/test_mandatory_secrets/00_9default_calculation.md deleted file mode 100644 index 7c1f3012..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_mandatory_secrets/00_9default_calculation.sh deleted file mode 100644 index c6ef6ceb..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.md b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index 2a7eba1a..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.md b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 37ec2ebc..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 0296637c..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index ee6735b5..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.md deleted file mode 100644 index b7621c63..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh deleted file mode 100644 index 1b691023..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 12720a7e..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.md b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.md deleted file mode 100644 index af923dbe..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh deleted file mode 100644 index 3d7cebbf..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index 270d2676..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.md b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.md deleted file mode 100644 index 98615c37..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh deleted file mode 100644 index 70cff6f2..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.md b/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.sh b/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_9default_integer.md b/tests/results/test_mandatory_secrets/00_9default_integer.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_9default_integer.sh b/tests/results/test_mandatory_secrets/00_9default_integer.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_number.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_9default_number.md b/tests/results/test_mandatory_secrets/00_9default_number.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_number.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_mandatory_secrets/00_9default_number.sh b/tests/results/test_mandatory_secrets/00_9default_number.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_mandatory_secrets/00_9default_number.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md deleted file mode 100644 index 5d310257..00000000 --- a/tests/results/test_mandatory_secrets/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/01_6boolean_multi.md b/tests/results/test_mandatory_secrets/01_6boolean_multi.md deleted file mode 100644 index d6d1b7bb..00000000 --- a/tests/results/test_mandatory_secrets/01_6boolean_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_mandatory_secrets/01_6boolean_multi.sh deleted file mode 100644 index 17196b85..00000000 --- a/tests/results/test_mandatory_secrets/01_6boolean_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the sixth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the seventh variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the eighth variable: - ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md deleted file mode 100644 index 4209eb56..00000000 --- a/tests/results/test_mandatory_secrets/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6custom_multi.md b/tests/results/test_mandatory_secrets/01_6custom_multi.md deleted file mode 100644 index 0e57ecd7..00000000 --- a/tests/results/test_mandatory_secrets/01_6custom_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_mandatory_secrets/01_6custom_multi.sh deleted file mode 100644 index ae0715f6..00000000 --- a/tests/results/test_mandatory_secrets/01_6custom_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first custom variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 a second custom variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md deleted file mode 100644 index 93e48755..00000000 --- a/tests/results/test_mandatory_secrets/01_6float_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6float_multi.md b/tests/results/test_mandatory_secrets/01_6float_multi.md deleted file mode 100644 index a31f7046..00000000 --- a/tests/results/test_mandatory_secrets/01_6float_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6float_multi.sh b/tests/results/test_mandatory_secrets/01_6float_multi.sh deleted file mode 100644 index b486778a..00000000 --- a/tests/results/test_mandatory_secrets/01_6float_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 2.2 ◀ loaded from rougail-test - ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md deleted file mode 100644 index e30525a2..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi.md b/tests/results/test_mandatory_secrets/01_6integer_multi.md deleted file mode 100644 index eaa41990..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi.sh b/tests/results/test_mandatory_secrets/01_6integer_multi.sh deleted file mode 100644 index c0be4d5e..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 836b7568..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.md b/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.md deleted file mode 100644 index 87fbdf9c..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.sh b/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.sh deleted file mode 100644 index 442425ee..00000000 --- a/tests/results/test_mandatory_secrets/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 the first variable: - ┣━━ 1 ◀ loaded from rougail-test - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md deleted file mode 100644 index 5fbc910b..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_empty.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_empty.md b/tests/results/test_mandatory_secrets/01_6string_empty.md deleted file mode 100644 index 975280ed..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_empty.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_empty.sh b/tests/results/test_mandatory_secrets/01_6string_empty.sh deleted file mode 100644 index 1a9baced..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_empty.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test (⏳ null) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md deleted file mode 100644 index 3142597e..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi.md b/tests/results/test_mandatory_secrets/01_6string_multi.md deleted file mode 100644 index c3e2d0f4..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi.sh b/tests/results/test_mandatory_secrets/01_6string_multi.sh deleted file mode 100644 index 1a9fb9c3..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md deleted file mode 100644 index db6dabfb..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi_length.md b/tests/results/test_mandatory_secrets/01_6string_multi_length.md deleted file mode 100644 index ce1579a3..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi_length.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_6string_multi_length.sh b/tests/results/test_mandatory_secrets/01_6string_multi_length.sh deleted file mode 100644 index 2b1c2a8e..00000000 --- a/tests/results/test_mandatory_secrets/01_6string_multi_length.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) -┗━━ 📓 the variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) - ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index 7974ca1b..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.md deleted file mode 100644 index 43e19150..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh deleted file mode 100644 index 580c6eba..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index 9042903f..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.md b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.md deleted file mode 100644 index 364a85c4..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh deleted file mode 100644 index c622b332..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 33da1434..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_quote.md b/tests/results/test_mandatory_secrets/01_7value_multi_quote.md deleted file mode 100644 index 89ae9bc4..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_quote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh deleted file mode 100644 index 09cf19be..00000000 --- a/tests/results/test_mandatory_secrets/01_7value_multi_quote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 24d1736f..00000000 --- a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.md b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.md deleted file mode 100644 index 46dfeff6..00000000 --- a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh deleted file mode 100644 index c86f0881..00000000 --- a/tests/results/test_mandatory_secrets/01_8calculation_information_multi.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index f2fff686..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.md b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.md deleted file mode 100644 index 2382d828..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh deleted file mode 100644 index d136bfab..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index c8b8b854..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.md b/tests/results/test_mandatory_secrets/01_9choice_variable_optional.md deleted file mode 100644 index 586b2381..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.sh b/tests/results/test_mandatory_secrets/01_9choice_variable_optional.sh deleted file mode 100644 index 0e05eefe..00000000 --- a/tests/results/test_mandatory_secrets/01_9choice_variable_optional.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_mandatory_secrets/02_0tags.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_mandatory_secrets/02_0tags.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/02_0tags.md b/tests/results/test_mandatory_secrets/02_0tags.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_mandatory_secrets/02_0tags.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/02_0tags.sh b/tests/results/test_mandatory_secrets/02_0tags.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_mandatory_secrets/02_0tags.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md deleted file mode 100644 index ee97f7cd..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/04_0type_param.md b/tests/results/test_mandatory_secrets/04_0type_param.md deleted file mode 100644 index f0d07715..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/04_0type_param.sh b/tests/results/test_mandatory_secrets/04_0type_param.sh deleted file mode 100644 index 053465dd..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md deleted file mode 100644 index 234a5b5f..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/04_0type_param_integer.md b/tests/results/test_mandatory_secrets/04_0type_param_integer.md deleted file mode 100644 index 67873679..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_mandatory_secrets/04_0type_param_integer.sh b/tests/results/test_mandatory_secrets/04_0type_param_integer.sh deleted file mode 100644 index 695cea51..00000000 --- a/tests/results/test_mandatory_secrets/04_0type_param_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md deleted file mode 100644 index e1a60ad6..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_mandatory_secrets/04_1auto_save.md b/tests/results/test_mandatory_secrets/04_1auto_save.md deleted file mode 100644 index 18a70157..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: an auto save variable: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save.sh b/tests/results/test_mandatory_secrets/04_1auto_save.sh deleted file mode 100644 index 56bd3b1f..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index 469ed912..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- no -] diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.md deleted file mode 100644 index 093d07d4..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh deleted file mode 100644 index 31019354..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: no diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index b6f6045b..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- yes -] diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index 9cad597b..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: yes diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 6f25cf6c..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: yes diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index 48a99f7a..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [- Modified value -] - -Variables: -- :notebook: [+ autosave variable +]: [- yes -] diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.md b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.md deleted file mode 100644 index 92ece53f..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Modified value - -Variables: -- :notebook: autosave variable: yes diff --git a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh deleted file mode 100644 index 4cca0417..00000000 --- a/tests/results/test_mandatory_secrets/04_1auto_save_and_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 autosave variable: yes diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 170642de..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: [+ a first variable +]: [+ value +] -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.md deleted file mode 100644 index 10dc1999..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: value -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 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 deleted file mode 100644 index e00e3612..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: value -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index b4eab162..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: [+ a first variable +]: [+ value +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7d07b2f2..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: value -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 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 deleted file mode 100644 index 4f5f03d3..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 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_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index 205a661e..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: [+ a second variable +]: [+ string1 +] -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.md deleted file mode 100644 index 37bb8509..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 -- :notebook: a third variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index c8275c28..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index cb9b1286..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.md b/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.md deleted file mode 100644 index 5c8e4af5..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 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 deleted file mode 100644 index f1f4aba5..00000000 --- a/tests/results/test_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 a second variable: string1 diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 46e2de93..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.md deleted file mode 100644 index 1faa8462..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.sh deleted file mode 100644 index ac23b242..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index 286460f7..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: [+ a first variable +]: [+ null +] -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.md deleted file mode 100644 index d20abd3e..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: null -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh deleted file mode 100644 index 0765f9ae..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a first variable: null -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index ec898881..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: [+ a first variable +]: [+ null +] -- :notebook: [+ a second variable +]: [+ null +] -- :notebook: [+ a forth variable +]: [+ null +] diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.md deleted file mode 100644 index fa50882d..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a first variable: null -- :notebook: a second variable: null -- :notebook: a forth variable: null 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 deleted file mode 100644 index e2608665..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a first variable: null -┣━━ 📓 a second variable: null -┗━━ 📓 a forth variable: null diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index f38884ea..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.md deleted file mode 100644 index b10ca8da..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 770895b7..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 2bfd3c07..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.md deleted file mode 100644 index f17f3292..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 23e7f59f..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 43cde7f8..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: [+ a condition +]: [+ false +] -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.md deleted file mode 100644 index f0db0c14..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :notebook: a condition: false -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 933e545c..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: false -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index 3f303baa..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a condition +]: [+ true +] diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.md deleted file mode 100644 index 6dc9f936..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a condition: true diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh deleted file mode 100644 index 9d912fbc..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable8.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.md b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.sh b/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators.gitlab.md deleted file mode 100644 index 0174f065..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators.md b/tests/results/test_mandatory_secrets/04_5validators.md deleted file mode 100644 index 12a8f33c..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators.sh b/tests/results/test_mandatory_secrets/04_5validators.sh deleted file mode 100644 index ea9b04d3..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md deleted file mode 100644 index 42963e31..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory_secrets/04_5validators_differ.md b/tests/results/test_mandatory_secrets/04_5validators_differ.md deleted file mode 100644 index e3a0a748..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_differ.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_mandatory_secrets/04_5validators_differ.sh deleted file mode 100644 index c928da68..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_differ.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) -┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md deleted file mode 100644 index 80c92a68..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi.md b/tests/results/test_mandatory_secrets/04_5validators_multi.md deleted file mode 100644 index 5604494f..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_mandatory_secrets/04_5validators_multi.sh deleted file mode 100644 index e75b040f..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md deleted file mode 100644 index 4f2aedad..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi2.md b/tests/results/test_mandatory_secrets/04_5validators_multi2.md deleted file mode 100644 index 4835d09e..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_mandatory_secrets/04_5validators_multi2.sh deleted file mode 100644 index 3a83e2d5..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test (⏳ no) - ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md deleted file mode 100644 index f3a2d97a..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi3.md b/tests/results/test_mandatory_secrets/04_5validators_multi3.md deleted file mode 100644 index 748fbe89..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/04_5validators_multi3.sh b/tests/results/test_mandatory_secrets/04_5validators_multi3.sh deleted file mode 100644 index 37efa90d..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_multi3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) - ┣━━ (⏳ 1) - ┗━━ (⏳ 2) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings.md b/tests/results/test_mandatory_secrets/04_5validators_warnings.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings.sh b/tests/results/test_mandatory_secrets/04_5validators_warnings.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.md b/tests/results/test_mandatory_secrets/04_5validators_warnings_all.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.sh b/tests/results/test_mandatory_secrets/04_5validators_warnings_all.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_mandatory_secrets/04_5validators_warnings_all.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.md b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_not_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/05_0multi_uniq.md b/tests/results/test_mandatory_secrets/05_0multi_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_mandatory_secrets/05_0multi_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory_secrets/05_0multi_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md deleted file mode 100644 index 4fc539eb..00000000 --- a/tests/results/test_mandatory_secrets/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- no -] diff --git a/tests/results/test_mandatory_secrets/12_1auto_save_expert.md b/tests/results/test_mandatory_secrets/12_1auto_save_expert.md deleted file mode 100644 index 517523ba..00000000 --- a/tests/results/test_mandatory_secrets/12_1auto_save_expert.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh deleted file mode 100644 index 01150e25..00000000 --- a/tests/results/test_mandatory_secrets/12_1auto_save_expert.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md deleted file mode 100644 index 87010fc4..00000000 --- a/tests/results/test_mandatory_secrets/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_0redefine_description.md b/tests/results/test_mandatory_secrets/16_0redefine_description.md deleted file mode 100644 index ddc8861c..00000000 --- a/tests/results/test_mandatory_secrets/16_0redefine_description.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_mandatory_secrets/16_0redefine_description.sh deleted file mode 100644 index d34dc9cf..00000000 --- a/tests/results/test_mandatory_secrets/16_0redefine_description.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index 582e4ddb..00000000 --- a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.md b/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.md deleted file mode 100644 index 5b5104e5..00000000 --- a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.sh b/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.sh deleted file mode 100644 index b8da1cea..00000000 --- a/tests/results/test_mandatory_secrets/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md deleted file mode 100644 index 61200957..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5exists_nonexists.md b/tests/results/test_mandatory_secrets/16_5exists_nonexists.md deleted file mode 100644 index 7513b68b..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_nonexists.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh deleted file mode 100644 index f5b51d27..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_nonexists.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md deleted file mode 100644 index 3935b6a0..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_redefine.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a first variable +]: [+ yes +] diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.md b/tests/results/test_mandatory_secrets/16_5exists_redefine.md deleted file mode 100644 index b282e496..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_redefine.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a first variable: yes diff --git a/tests/results/test_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_mandatory_secrets/16_5exists_redefine.sh deleted file mode 100644 index ddd827e4..00000000 --- a/tests/results/test_mandatory_secrets/16_5exists_redefine.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: yes diff --git a/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_calculation.md b/tests/results/test_mandatory_secrets/16_5redefine_calculation.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md deleted file mode 100644 index 353e222d..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_choice.md b/tests/results/test_mandatory_secrets/16_5redefine_choice.md deleted file mode 100644 index 5db72d9a..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_choice.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_mandatory_secrets/16_5redefine_choice.sh deleted file mode 100644 index 3a629191..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_choice.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default.md b/tests/results/test_mandatory_secrets/16_5redefine_default.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_mandatory_secrets/16_5redefine_default.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.md b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md deleted file mode 100644 index a69c29c3..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_family.md b/tests/results/test_mandatory_secrets/16_5redefine_family.md deleted file mode 100644 index b159751c..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_mandatory_secrets/16_5redefine_family.sh deleted file mode 100644 index bb08133f..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 new description - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md deleted file mode 100644 index 6c1c3743..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_help.md b/tests/results/test_mandatory_secrets/16_5redefine_help.md deleted file mode 100644 index 9ee7daa3..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_mandatory_secrets/16_5redefine_help.sh deleted file mode 100644 index fd4905f8..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e05d930b..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :notebook: [+ a variable +]: [+ no +] diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.md b/tests/results/test_mandatory_secrets/16_5redefine_hidden.md deleted file mode 100644 index a076cf86..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh deleted file mode 100644 index 3c351ac6..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_multi.md b/tests/results/test_mandatory_secrets/16_5redefine_multi.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_mandatory_secrets/16_5redefine_multi.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.md b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_mandatory_secrets/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md deleted file mode 100644 index 2c9ecbe5..00000000 --- a/tests/results/test_mandatory_secrets/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5test_redefine.md b/tests/results/test_mandatory_secrets/16_5test_redefine.md deleted file mode 100644 index 6626d28c..00000000 --- a/tests/results/test_mandatory_secrets/16_5test_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_mandatory_secrets/16_5test_redefine.sh deleted file mode 100644 index c9dac4d6..00000000 --- a/tests/results/test_mandatory_secrets/16_5test_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md deleted file mode 100644 index 77d8d999..00000000 --- a/tests/results/test_mandatory_secrets/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory_secrets/16_6choice_redefine.md b/tests/results/test_mandatory_secrets/16_6choice_redefine.md deleted file mode 100644 index 380d05d1..00000000 --- a/tests/results/test_mandatory_secrets/16_6choice_redefine.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_mandatory_secrets/16_6choice_redefine.sh deleted file mode 100644 index 34e3ba21..00000000 --- a/tests/results/test_mandatory_secrets/16_6choice_redefine.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f915f7d0..00000000 --- a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.md b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.md deleted file mode 100644 index 8a0e5620..00000000 --- a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh deleted file mode 100644 index 9e86f819..00000000 --- a/tests/results/test_mandatory_secrets/16_6exists_redefine_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 new description -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a second family - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md deleted file mode 100644 index 4be431c1..00000000 --- a/tests/results/test_mandatory_secrets/16exists_exists.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16exists_exists.md b/tests/results/test_mandatory_secrets/16exists_exists.md deleted file mode 100644 index 4c470e07..00000000 --- a/tests/results/test_mandatory_secrets/16exists_exists.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16exists_exists.sh b/tests/results/test_mandatory_secrets/16exists_exists.sh deleted file mode 100644 index ab907b7a..00000000 --- a/tests/results/test_mandatory_secrets/16exists_exists.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory_secrets/17_5redefine_leadership.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory_secrets/17_5redefine_leadership.md b/tests/results/test_mandatory_secrets/17_5redefine_leadership.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory_secrets/17_5redefine_leadership.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory_secrets/17_5redefine_leadership.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory_secrets/20_0empty_family.gitlab.md b/tests/results/test_mandatory_secrets/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0empty_family.md b/tests/results/test_mandatory_secrets/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0empty_family.sh b/tests/results/test_mandatory_secrets/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md deleted file mode 100644 index 7c84733e..00000000 --- a/tests/results/test_mandatory_secrets/20_0family_append.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0family_append.md b/tests/results/test_mandatory_secrets/20_0family_append.md deleted file mode 100644 index a8b9719e..00000000 --- a/tests/results/test_mandatory_secrets/20_0family_append.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0family_append.sh b/tests/results/test_mandatory_secrets/20_0family_append.sh deleted file mode 100644 index a13b229a..00000000 --- a/tests/results/test_mandatory_secrets/20_0family_append.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A family - ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0family_underscore.gitlab.md b/tests/results/test_mandatory_secrets/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0family_underscore.md b/tests/results/test_mandatory_secrets/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_mandatory_secrets/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family.md b/tests/results/test_mandatory_secrets/20_0multi_family.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family.sh b/tests/results/test_mandatory_secrets/20_0multi_family.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_basic.md b/tests/results/test_mandatory_secrets/20_0multi_family_basic.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_basic.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_basic.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_expert.md b/tests/results/test_mandatory_secrets/20_0multi_family_expert.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_expert.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_expert.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md deleted file mode 100644 index 94d1798c..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_order.md b/tests/results/test_mandatory_secrets/20_0multi_family_order.md deleted file mode 100644 index 70a49206..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_order.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_mandatory_secrets/20_0multi_family_order.sh deleted file mode 100644 index d04191f9..00000000 --- a/tests/results/test_mandatory_secrets/20_0multi_family_order.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a sub family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 5ca71d92..00000000 --- a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.md b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.md deleted file mode 100644 index 0cafcb81..00000000 --- a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh deleted file mode 100644 index 32cb5377..00000000 --- a/tests/results/test_mandatory_secrets/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/20_1empty_subfamily.gitlab.md b/tests/results/test_mandatory_secrets/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_1empty_subfamily.md b/tests/results/test_mandatory_secrets/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_mandatory_secrets/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index bd1df785..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.md deleted file mode 100644 index a8e625d2..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.sh b/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.sh deleted file mode 100644 index f0e10846..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┣━━ 📓 dynamic: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 2df94454..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.md b/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.md deleted file mode 100644 index 3a136486..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.sh b/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.sh deleted file mode 100644 index 4244d0a5..00000000 --- a/tests/results/test_mandatory_secrets/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md deleted file mode 100644 index cbf4068a..00000000 --- a/tests/results/test_mandatory_secrets/20_7help_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_7help_family.md b/tests/results/test_mandatory_secrets/20_7help_family.md deleted file mode 100644 index 41f2acc7..00000000 --- a/tests/results/test_mandatory_secrets/20_7help_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_7help_family.sh b/tests/results/test_mandatory_secrets/20_7help_family.sh deleted file mode 100644 index c9bbc685..00000000 --- a/tests/results/test_mandatory_secrets/20_7help_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 the first family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 the second family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md deleted file mode 100644 index a560c5af..00000000 --- a/tests/results/test_mandatory_secrets/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_9default_information_parent.md b/tests/results/test_mandatory_secrets/20_9default_information_parent.md deleted file mode 100644 index e67bf81e..00000000 --- a/tests/results/test_mandatory_secrets/20_9default_information_parent.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_mandatory_secrets/20_9default_information_parent.sh deleted file mode 100644 index ac1e709e..00000000 --- a/tests/results/test_mandatory_secrets/20_9default_information_parent.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md b/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md deleted file mode 100644 index ded677c1..00000000 --- a/tests/results/test_mandatory_secrets/20_9family_absolute.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: [- string6 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: [- string5 -] ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_mandatory_secrets/20_9family_absolute.md b/tests/results/test_mandatory_secrets/20_9family_absolute.md deleted file mode 100644 index 1d3f37e4..00000000 --- a/tests/results/test_mandatory_secrets/20_9family_absolute.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: string6 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: string5 ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_mandatory_secrets/20_9family_absolute.sh b/tests/results/test_mandatory_secrets/20_9family_absolute.sh deleted file mode 100644 index 9c784385..00000000 --- a/tests/results/test_mandatory_secrets/20_9family_absolute.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 first variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a family -┃ ┣━━ 📓 a second variable: string6 ◀ loaded from rougail-test -┃ ┗━━ 📂 a sub family -┃  ┗━━ 📓 third variable: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a variable2: string1 ◀ loaded from rougail-test (⏳ string6) - ┣━━ 📓 var3: string5 ◀ loaded from rougail-test (⏳ string4) - ┗━━ 📂 a sub family -  ┗━━ 📓 fourth variable: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string5) diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 6887d877..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f48c6a65..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 85c11674..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 2cf20ed9..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :open_file_folder: [+ possibly hidden family +] - - :open_file_folder: [+ a subfamily +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index a1614c19..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: null 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 deleted file mode 100644 index 8d7fd394..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: null diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 010bce1f..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index b65ff4d8..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 95a9d262..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index 14412f5d..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.md b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.md deleted file mode 100644 index b1c4a25f..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index 2970d2e4..00000000 --- a/tests/results/test_mandatory_secrets/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index 29c01c5b..00000000 --- a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.md b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.md deleted file mode 100644 index 1beb7638..00000000 --- a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh deleted file mode 100644 index 67ce7188..00000000 --- a/tests/results/test_mandatory_secrets/24_7validators_variable_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test - ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.md b/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_mandatory_secrets/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership.md b/tests/results/test_mandatory_secrets/40_0leadership.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership.sh b/tests/results/test_mandatory_secrets/40_0leadership.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.md b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_diff_name.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_empty.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/40_0leadership_empty.md b/tests/results/test_mandatory_secrets/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_mandatory_secrets/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 7e5f52ab..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.md deleted file mode 100644 index f880cd7e..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index a0bc32a9..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 7d310879..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.md b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.md deleted file mode 100644 index 95c37305..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh deleted file mode 100644 index 5fb71c9a..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 1709a587..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.md deleted file mode 100644 index 36414b39..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.sh b/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.sh deleted file mode 100644 index fd689b3a..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 04e45fb3..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.md b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.md deleted file mode 100644 index 63e543a5..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh deleted file mode 100644 index e088b449..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 general -┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📂 general1 - ┗━━ 📂 leader -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 leader -   ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md deleted file mode 100644 index d43eb4bf..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_reduce.md b/tests/results/test_mandatory_secrets/40_0leadership_reduce.md deleted file mode 100644 index 88453886..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_reduce.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_0leadership_reduce.sh b/tests/results/test_mandatory_secrets/40_0leadership_reduce.sh deleted file mode 100644 index ee887294..00000000 --- a/tests/results/test_mandatory_secrets/40_0leadership_reduce.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -  ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index 59359dfe..00000000 --- a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.md b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.md deleted file mode 100644 index 39a9eb94..00000000 --- a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh deleted file mode 100644 index 38bde772..00000000 --- a/tests/results/test_mandatory_secrets/40_1leadership_append_follower.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test - ┗━━ 📂 the leader -  ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -  ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.md b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.sh b/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_mandatory_secrets/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md deleted file mode 100644 index cdab71d7..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_boolean.md b/tests/results/test_mandatory_secrets/40_8calculation_boolean.md deleted file mode 100644 index 8f229c20..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh deleted file mode 100644 index fa059347..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first multi variable: -┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) -┃ ┗━━ (⏳ false) -┗━━ 📓 a second multi variable: - ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index 9ab6f966..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.md deleted file mode 100644 index ea76a3f7..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh deleted file mode 100644 index e873131f..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index af08eb4f..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e9522140..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 8d9594cf..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a family - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index d8f02022..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.md b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 9dc630c0..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index 12a80d56..00000000 --- a/tests/results/test_mandatory_secrets/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 first family -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 second family - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index db88a660..00000000 --- a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index fa4bb5d7..00000000 --- a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index c1db45ba..00000000 --- a/tests/results/test_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,24 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 19c6318b..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index cf5fbdfd..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 471eb20e..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index cfd5439a..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index 8750db38..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 2faff4bf..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 23c2ad34..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test -- :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index d64f4d5b..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test -- :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index 379f6858..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 leader -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) -┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) -┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 leader -┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test -┗━━ 📓 variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 6ff0ca56..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 9b1f660b..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 91efcba4..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index ac2dde3e..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index d41eea3b..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index 49e9a5b9..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 149cb498..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.md deleted file mode 100644 index 5ba581c7..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.sh deleted file mode 100644 index 6b4cdee9..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a calculated variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 37bf1d4d..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 3dcd76a1..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index ad0e2301..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 81fbb1fa..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index 06e478ec..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 5c19cd76..00000000 --- a/tests/results/test_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,34 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md deleted file mode 100644 index 629de092..00000000 --- a/tests/results/test_mandatory_secrets/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/41_0choice_leader.md b/tests/results/test_mandatory_secrets/41_0choice_leader.md deleted file mode 100644 index 72715a35..00000000 --- a/tests/results/test_mandatory_secrets/41_0choice_leader.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_mandatory_secrets/41_0choice_leader.sh deleted file mode 100644 index 4498a73f..00000000 --- a/tests/results/test_mandatory_secrets/41_0choice_leader.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 The leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory_secrets/44_0leadership_hidden.md b/tests/results/test_mandatory_secrets/44_0leadership_hidden.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.md b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory_secrets/44_0leadership_leader_hidden.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index dfc3ca97..00000000 --- a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.md b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e6f47925..00000000 --- a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index b5d95187..00000000 --- a/tests/results/test_mandatory_secrets/44_1leadership_append_hidden_follower.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership: [] diff --git a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index ee9d9dca..00000000 --- a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.md b/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index b2d08e0e..00000000 --- a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.sh b/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index a7273d4f..00000000 --- a/tests/results/test_mandatory_secrets/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 aleader - ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) - ┣━━ 📂 aleader - ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 aleader -  ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.md b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_mandatory_secrets/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 0db07d7b..00000000 --- a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.md b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index a2404e68..00000000 --- a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index a2636a45..00000000 --- a/tests/results/test_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index d4cd7eb2..00000000 --- a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.md b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index a58b3f36..00000000 --- a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index fa331e78..00000000 --- a/tests/results/test_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic.md b/tests/results/test_mandatory_secrets/60_0family_dynamic.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index af851262..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.md deleted file mode 100644 index 08a9535a..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh deleted file mode 100644 index 6fbf1253..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index d1c55ac7..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index efb43e1b..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index fa8ff1f3..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) -┣━━ 📂 A dynamic family -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┗━━ 📂 A dynamic family - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index d89bbdb3..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.md deleted file mode 100644 index 812b4d57..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh deleted file mode 100644 index eb42dd7e..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index bc4e0c06..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 5a2dd6ba..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index d21a390e..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index a8ad32a5..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: [+ A suffix variable +]: - - [+ val1 +] - - [+ val2 +] -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 5a905b2f..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 - - val2 -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index 788fcbdf..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 -┃ ┗━━ val2 -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index 20e60b3c..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.md deleted file mode 100644 index dc79f348..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh deleted file mode 100644 index 7aa2954b..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_static.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_test.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 3eca313d..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.md deleted file mode 100644 index f398f627..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.sh deleted file mode 100644 index ec5aa3ca..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) -┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 4d10ad3e..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 96839d92..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 6345b4d7..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 5eb83d83..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 6dd84d40..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index c263e940..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index bc0e5952..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index 720a9821..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index b608466a..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index d2943697..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 9aa6b202..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index 132f62e5..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_mandatory_secrets/60_0family_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/60_0family_empty.md b/tests/results/test_mandatory_secrets/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/60_0family_empty.sh b/tests/results/test_mandatory_secrets/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md deleted file mode 100644 index ae57b551..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_hidden.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: [+ a family +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.md b/tests/results/test_mandatory_secrets/60_0family_hidden.md deleted file mode 100644 index e9be0a15..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_hidden.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: a family - - :notebook: a variable: null diff --git a/tests/results/test_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_mandatory_secrets/60_0family_hidden.sh deleted file mode 100644 index 6d5a0221..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_hidden.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Unmodifiable variable Default value │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 a variable: null diff --git a/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md deleted file mode 100644 index e6cd7fa4..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_mode.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory_secrets/60_0family_mode.md b/tests/results/test_mandatory_secrets/60_0family_mode.md deleted file mode 100644 index f76c8324..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_mode.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_mandatory_secrets/60_0family_mode.sh b/tests/results/test_mandatory_secrets/60_0family_mode.sh deleted file mode 100644 index b4378976..00000000 --- a/tests/results/test_mandatory_secrets/60_0family_mode.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index b45560fd..00000000 --- a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.md b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.md deleted file mode 100644 index fa7f0864..00000000 --- a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh deleted file mode 100644 index 92019a09..00000000 --- a/tests/results/test_mandatory_secrets/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 A dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index 5af07e18..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 04e40e16..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 46f3925c..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index a147d524..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index a1d2e634..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a792c807..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 5fdbf67a..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index ce8a68f4..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index e07d8b43..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 72143984..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 2bd02540..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index b7749f03..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index da3b06ca..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.md deleted file mode 100644 index 1e9d9e20..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4d05d0b5..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index b6b7d9fc..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index a5865a38..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index 4e06aea3..00000000 --- a/tests/results/test_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index 936caa53..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.md deleted file mode 100644 index 3a12c9e1..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 526482f2..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index bebc24fc..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 56a75dec..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 368aed0c..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 8c17123a..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index bf21995b..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 1ce047d1..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index 3ee22e21..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: dynval1: [+ {} +] -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index e1f9e7c5..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :notebook: dynval1: {} -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index f6dfd744..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 dynval1: {} -┗━━ 📂 dynval2 - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 1e9176a2..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index 682154e6..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index d9c20648..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index a453f8c4..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 485ed622..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index f7cd4f2f..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index bd37ad38..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.md deleted file mode 100644 index 3b4c711d..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 2c88b793..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 502177dd..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index ec4f12df..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index 4f9bb00f..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic famify for val2 - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index 3dee4508..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 4a3151fa..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index ba054a06..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index 84f9b3c0..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index ff0a9f55..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 5d8b38a3..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index caefb71e..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: [+ a dynamic family +] - - :notebook: [+ a variable +]: [+ null +] - - :open_file_folder: [+ a family +] - - :notebook: [+ a new variable +]: [+ null +] diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index 89d5253c..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable: null - - :open_file_folder: a family - - :notebook: a new variable: 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 deleted file mode 100644 index dbe581a8..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┣━━ 📓 a variable: null - ┗━━ 📂 a family -  ┗━━ 📓 a new variable: null diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index c55d0ae6..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 6071368d..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 17e9909a..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 124eb013..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index e925b544..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index ddad282b..00000000 --- a/tests/results/test_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 asuffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index e7891e7b..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.md deleted file mode 100644 index 1531b7ff..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh deleted file mode 100644 index ae685832..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 2cb72da4..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.md b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index 2bd221af..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index a2c146ad..00000000 --- a/tests/results/test_mandatory_secrets/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 6a7898b7..00000000 --- a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.md b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.md deleted file mode 100644 index 290574db..00000000 --- a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 54091b4b..00000000 --- a/tests/results/test_mandatory_secrets/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index 24be4030..00000000 --- a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.md b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.md deleted file mode 100644 index 56af6e36..00000000 --- a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh deleted file mode 100644 index c1a7f77e..00000000 --- a/tests/results/test_mandatory_secrets/68_0family_leadership_mode.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┗━━ 📂 A leader -  ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace/04_1jinja_and_hidden.gitlab.md b/tests/results/test_namespace/04_1jinja_and_hidden.gitlab.md new file mode 100644 index 00000000..ba41b943 --- /dev/null +++ b/tests/results/test_namespace/04_1jinja_and_hidden.gitlab.md @@ -0,0 +1,9 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: [+ A first variable +]: [+ true +] diff --git a/tests/results/test_namespace/04_1jinja_and_hidden.md b/tests/results/test_namespace/04_1jinja_and_hidden.md new file mode 100644 index 00000000..246581f2 --- /dev/null +++ b/tests/results/test_namespace/04_1jinja_and_hidden.md @@ -0,0 +1,10 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A first variable: true diff --git a/tests/results/test_namespace/04_1jinja_and_hidden.sh b/tests/results/test_namespace/04_1jinja_and_hidden.sh new file mode 100644 index 00000000..902e7752 --- /dev/null +++ b/tests/results/test_namespace/04_1jinja_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────── Caption ──────────────╮ +│ Variable Default value │ +│ Unmodifiable variable │ +╰─────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 A first variable: true diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable10.sh rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory/00_0no_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable.gitlab.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/00_0no_variable.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/00_0no_variable.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/00_0no_variable.sh rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.gitlab.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable.sh rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.md b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.md rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable2.sh rename to tests/results/test_namespace/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md index b24fdce9..14c969da 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.gitlab.md @@ -6,12 +6,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.md b/tests/results/test_namespace/60_5family_dynamic_calc_description.md index a4cfbfee..184f0b33 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.md @@ -7,12 +7,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test + - :notebook: a new variable: string1 ← loaded from rougail-test + - :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace/60_5family_dynamic_calc_description.sh index 80b27cbd..d0a58991 100644 --- a/tests/results/test_namespace/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace/60_5family_dynamic_calc_description.sh @@ -4,12 +4,12 @@ ╰──────────────────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test + ┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test + ┗━━ 📓 a new variable:   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..6e7d23bd --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,19 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: [+ A suffix variable2 +]: [+ val1 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..d0db6d41 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,20 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A suffix variable2: val1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..a50ce5d5 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,16 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📓 A suffix variable2: val1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) + ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..90273d14 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,28 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: [+ A suffix variable2 +]: [+ val1 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..9f05e7d3 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,29 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A suffix variable2: val1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..522a7e92 --- /dev/null +++ b/tests/results/test_namespace/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,25 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📓 A suffix variable2: val1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📓 A variable calculated: +  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) +  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..6d27958f --- /dev/null +++ b/tests/results/test_namespace/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,37 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace/60_6family_subdynamic_inside.md b/tests/results/test_namespace/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..359acc4c --- /dev/null +++ b/tests/results/test_namespace/60_6family_subdynamic_inside.md @@ -0,0 +1,38 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace/60_6family_subdynamic_inside.sh b/tests/results/test_namespace/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..30808edb --- /dev/null +++ b/tests/results/test_namespace/60_6family_subdynamic_inside.sh @@ -0,0 +1,35 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┗━━ string3 ◀ loaded from rougail-test + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃   ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┗━━ string3 ◀ loaded from rougail-test +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +   ┗━━ 📓 A variable calculated: +    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +    ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_0empty.gitlab.md b/tests/results/test_namespace_mandatory/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0empty.md b/tests/results/test_namespace_mandatory/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0empty.sh b/tests/results/test_namespace_mandatory/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable.md b/tests/results/test_namespace_mandatory/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable.sh b/tests/results/test_namespace_mandatory/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_default_version.gitlab.md b/tests/results/test_namespace_mandatory/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_default_version.md b/tests/results/test_namespace_mandatory/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_default_version.sh b/tests/results/test_namespace_mandatory/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.gitlab.md b/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.md b/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.sh b/tests/results/test_namespace_mandatory/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_0version_underscore.md b/tests/results/test_namespace_mandatory/00_0version_underscore.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/00_0version_underscore.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_0version_underscore.sh b/tests/results/test_namespace_mandatory/00_0version_underscore.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/00_0version_underscore.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md deleted file mode 100644 index 652feeaf..00000000 --- a/tests/results/test_namespace_mandatory/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_1empty_variable.md b/tests/results/test_namespace_mandatory/00_1empty_variable.md deleted file mode 100644 index de86a2d3..00000000 --- a/tests/results/test_namespace_mandatory/00_1empty_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_1empty_variable.sh b/tests/results/test_namespace_mandatory/00_1empty_variable.sh deleted file mode 100644 index a4659e16..00000000 --- a/tests/results/test_namespace_mandatory/00_1empty_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md deleted file mode 100644 index 6383c35b..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated.md b/tests/results/test_namespace_mandatory/00_2default_calculated.md deleted file mode 100644 index 591772c6..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated.sh b/tests/results/test_namespace_mandatory/00_2default_calculated.sh deleted file mode 100644 index dc926c91..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index e5a74d04..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.md b/tests/results/test_namespace_mandatory/00_2default_calculated_multi.md deleted file mode 100644 index 563a935c..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_multi.sh deleted file mode 100644 index 2a56e535..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 2e6e8765..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ leadership +] - - :open_file_folder: [+ a first variable +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.md b/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.md deleted file mode 100644 index 87d9614e..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a first variable - - :notebook: a first variable: a_value - - :notebook: a first variable: a_value - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 0c9a5a8c..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leadership - ┃ ┗━━ 📂 a first variable - ┃  ┣━━ 📓 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/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_variable.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index ae8bfa44..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.md deleted file mode 100644 index 04f42da8..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.sh deleted file mode 100644 index b344efd6..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 1f9ae4f2..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 16ee157b..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 8dc7e22b..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_mandatory/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md deleted file mode 100644 index 09326a92..00000000 --- a/tests/results/test_namespace_mandatory/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_4load_subfolder.md b/tests/results/test_namespace_mandatory/00_4load_subfolder.md deleted file mode 100644 index aff96c10..00000000 --- a/tests/results/test_namespace_mandatory/00_4load_subfolder.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_4load_subfolder.sh b/tests/results/test_namespace_mandatory/00_4load_subfolder.sh deleted file mode 100644 index 4370e383..00000000 --- a/tests/results/test_namespace_mandatory/00_4load_subfolder.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md b/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md deleted file mode 100644 index 46210fda..00000000 --- a/tests/results/test_namespace_mandatory/00_5load_notype.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory/00_5load_notype.md b/tests/results/test_namespace_mandatory/00_5load_notype.md deleted file mode 100644 index b18a4be1..00000000 --- a/tests/results/test_namespace_mandatory/00_5load_notype.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory/00_5load_notype.sh b/tests/results/test_namespace_mandatory/00_5load_notype.sh deleted file mode 100644 index e353a6f5..00000000 --- a/tests/results/test_namespace_mandatory/00_5load_notype.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md b/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md deleted file mode 100644 index 84cf8921..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory/00_6boolean.md b/tests/results/test_namespace_mandatory/00_6boolean.md deleted file mode 100644 index 19c2fa36..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory/00_6boolean.sh b/tests/results/test_namespace_mandatory/00_6boolean.sh deleted file mode 100644 index d220f06b..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 4ac9370f..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.md b/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.md deleted file mode 100644 index 1dc28bc5..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.sh deleted file mode 100644 index 964ce027..00000000 --- a/tests/results/test_namespace_mandatory/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/00_6choice.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice.gitlab.md deleted file mode 100644 index 383509ba..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test - - :notebook: the third variable: [- a -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory/00_6choice.md b/tests/results/test_namespace_mandatory/00_6choice.md deleted file mode 100644 index 5c045689..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test - - :notebook: the third variable: a ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory/00_6choice.sh b/tests/results/test_namespace_mandatory/00_6choice.sh deleted file mode 100644 index 1c096407..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┣━━ 📓 the second variable: a ◀ loaded from rougail-test - ┣━━ 📓 the third variable: a ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_6choice_calculation.md b/tests/results/test_namespace_mandatory/00_6choice_calculation.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_6choice_calculation.sh b/tests/results/test_namespace_mandatory/00_6choice_calculation.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md deleted file mode 100644 index 06f5eaf5..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_link.md b/tests/results/test_namespace_mandatory/00_6choice_link.md deleted file mode 100644 index bf16009c..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_link.sh b/tests/results/test_namespace_mandatory/00_6choice_link.sh deleted file mode 100644 index 3b168a96..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md deleted file mode 100644 index 7394ca55..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable.md b/tests/results/test_namespace_mandatory/00_6choice_variable.md deleted file mode 100644 index 987b9554..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable.sh b/tests/results/test_namespace_mandatory/00_6choice_variable.sh deleted file mode 100644 index eddb3823..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 45e3ebdd..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link.md deleted file mode 100644 index 3266f37f..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link.sh b/tests/results/test_namespace_mandatory/00_6choice_variable_link.sh deleted file mode 100644 index f2b547f9..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 91b79b22..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.md b/tests/results/test_namespace_mandatory/00_6choice_variable_link2.md deleted file mode 100644 index 1fd50789..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.sh b/tests/results/test_namespace_mandatory/00_6choice_variable_link2.sh deleted file mode 100644 index 7b36ca02..00000000 --- a/tests/results/test_namespace_mandatory/00_6choice_variable_link2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 family -  ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/00_6custom.gitlab.md b/tests/results/test_namespace_mandatory/00_6custom.gitlab.md deleted file mode 100644 index 828cfcba..00000000 --- a/tests/results/test_namespace_mandatory/00_6custom.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6custom.md b/tests/results/test_namespace_mandatory/00_6custom.md deleted file mode 100644 index f96a15ad..00000000 --- a/tests/results/test_namespace_mandatory/00_6custom.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6custom.sh b/tests/results/test_namespace_mandatory/00_6custom.sh deleted file mode 100644 index 3cfc944a..00000000 --- a/tests/results/test_namespace_mandatory/00_6custom.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md b/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6domainname.md b/tests/results/test_namespace_mandatory/00_6domainname.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6domainname.sh b/tests/results/test_namespace_mandatory/00_6domainname.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6domainname_params.md b/tests/results/test_namespace_mandatory/00_6domainname_params.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname_params.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6domainname_params.sh b/tests/results/test_namespace_mandatory/00_6domainname_params.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_mandatory/00_6domainname_params.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_mandatory/00_6float.gitlab.md b/tests/results/test_namespace_mandatory/00_6float.gitlab.md deleted file mode 100644 index 45722b34..00000000 --- a/tests/results/test_namespace_mandatory/00_6float.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_mandatory/00_6float.md b/tests/results/test_namespace_mandatory/00_6float.md deleted file mode 100644 index fa113376..00000000 --- a/tests/results/test_namespace_mandatory/00_6float.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_mandatory/00_6float.sh b/tests/results/test_namespace_mandatory/00_6float.sh deleted file mode 100644 index 81ba4f10..00000000 --- a/tests/results/test_namespace_mandatory/00_6float.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_namespace_mandatory/00_6integer.gitlab.md b/tests/results/test_namespace_mandatory/00_6integer.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_mandatory/00_6integer.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/00_6integer.md b/tests/results/test_namespace_mandatory/00_6integer.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_mandatory/00_6integer.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/00_6integer.sh b/tests/results/test_namespace_mandatory/00_6integer.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_mandatory/00_6integer.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory/00_6ip.gitlab.md b/tests/results/test_namespace_mandatory/00_6ip.gitlab.md deleted file mode 100644 index 6c4c50b8..00000000 --- a/tests/results/test_namespace_mandatory/00_6ip.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory/00_6ip.md b/tests/results/test_namespace_mandatory/00_6ip.md deleted file mode 100644 index 75aec391..00000000 --- a/tests/results/test_namespace_mandatory/00_6ip.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory/00_6ip.sh b/tests/results/test_namespace_mandatory/00_6ip.sh deleted file mode 100644 index 6b4b4006..00000000 --- a/tests/results/test_namespace_mandatory/00_6ip.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) - ┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) - ┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory/00_6network.gitlab.md b/tests/results/test_namespace_mandatory/00_6network.gitlab.md deleted file mode 100644 index bce02121..00000000 --- a/tests/results/test_namespace_mandatory/00_6network.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory/00_6network.md b/tests/results/test_namespace_mandatory/00_6network.md deleted file mode 100644 index 51eb7eec..00000000 --- a/tests/results/test_namespace_mandatory/00_6network.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory/00_6network.sh b/tests/results/test_namespace_mandatory/00_6network.sh deleted file mode 100644 index bd7c3635..00000000 --- a/tests/results/test_namespace_mandatory/00_6network.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) - ┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) - ┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory/00_6number.gitlab.md b/tests/results/test_namespace_mandatory/00_6number.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_mandatory/00_6number.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/00_6number.md b/tests/results/test_namespace_mandatory/00_6number.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_mandatory/00_6number.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/00_6number.sh b/tests/results/test_namespace_mandatory/00_6number.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_mandatory/00_6number.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory/00_6port.gitlab.md b/tests/results/test_namespace_mandatory/00_6port.gitlab.md deleted file mode 100644 index 657acee9..00000000 --- a/tests/results/test_namespace_mandatory/00_6port.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: [- 80 -] ← loaded from rougail-test - - :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_mandatory/00_6port.md b/tests/results/test_namespace_mandatory/00_6port.md deleted file mode 100644 index 672ca899..00000000 --- a/tests/results/test_namespace_mandatory/00_6port.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: 80 ← loaded from rougail-test - - :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_mandatory/00_6port.sh b/tests/results/test_namespace_mandatory/00_6port.sh deleted file mode 100644 index 51381431..00000000 --- a/tests/results/test_namespace_mandatory/00_6port.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test - ┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md b/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md deleted file mode 100644 index 9e350911..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_mandatory/00_6regexp.md b/tests/results/test_namespace_mandatory/00_6regexp.md deleted file mode 100644 index 28255257..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_mandatory/00_6regexp.sh b/tests/results/test_namespace_mandatory/00_6regexp.sh deleted file mode 100644 index 391f3ff0..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md deleted file mode 100644 index 1fcdb643..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_mandatory/00_6regexp_link.md b/tests/results/test_namespace_mandatory/00_6regexp_link.md deleted file mode 100644 index e87428e8..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_mandatory/00_6regexp_link.sh b/tests/results/test_namespace_mandatory/00_6regexp_link.sh deleted file mode 100644 index ace68e72..00000000 --- a/tests/results/test_namespace_mandatory/00_6regexp_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) - ┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_namespace_mandatory/00_6secret.gitlab.md b/tests/results/test_namespace_mandatory/00_6secret.gitlab.md deleted file mode 100644 index 3570e649..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test - - :notebook: the second variable: [- onE7vaLues_len1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6secret.md b/tests/results/test_namespace_mandatory/00_6secret.md deleted file mode 100644 index afc90eb4..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test - - :notebook: the second variable: onE7vaLues_len1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6secret.sh b/tests/results/test_namespace_mandatory/00_6secret.sh deleted file mode 100644 index 4001fb47..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: onE7vaLues_len1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md b/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md deleted file mode 100644 index 24d5aa34..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret_param.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test - - :notebook: the second variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6secret_param.md b/tests/results/test_namespace_mandatory/00_6secret_param.md deleted file mode 100644 index de18746b..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret_param.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test - - :notebook: the second variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/00_6secret_param.sh b/tests/results/test_namespace_mandatory/00_6secret_param.sh deleted file mode 100644 index 83769d56..00000000 --- a/tests/results/test_namespace_mandatory/00_6secret_param.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) - ┗━━ 📓 the third variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/00_6string.gitlab.md b/tests/results/test_namespace_mandatory/00_6string.gitlab.md deleted file mode 100644 index feba490f..00000000 --- a/tests/results/test_namespace_mandatory/00_6string.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test - - :notebook: the third variable: [- string1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/00_6string.md b/tests/results/test_namespace_mandatory/00_6string.md deleted file mode 100644 index 92a67213..00000000 --- a/tests/results/test_namespace_mandatory/00_6string.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test - - :notebook: the third variable: string1 ← loaded from rougail-test - - :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/00_6string.sh b/tests/results/test_namespace_mandatory/00_6string.sh deleted file mode 100644 index 5ea4d472..00000000 --- a/tests/results/test_namespace_mandatory/00_6string.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md deleted file mode 100644 index 15acb0a9..00000000 --- a/tests/results/test_namespace_mandatory/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory/00_7choice_quote.md b/tests/results/test_namespace_mandatory/00_7choice_quote.md deleted file mode 100644 index 05d4413c..00000000 --- a/tests/results/test_namespace_mandatory/00_7choice_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory/00_7choice_quote.sh b/tests/results/test_namespace_mandatory/00_7choice_quote.sh deleted file mode 100644 index fd032caa..00000000 --- a/tests/results/test_namespace_mandatory/00_7choice_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_mandatory/00_7help.gitlab.md b/tests/results/test_namespace_mandatory/00_7help.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory/00_7help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help.md b/tests/results/test_namespace_mandatory/00_7help.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory/00_7help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help.sh b/tests/results/test_namespace_mandatory/00_7help.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory/00_7help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_quote.md b/tests/results/test_namespace_mandatory/00_7help_quote.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_quote.sh b/tests/results/test_namespace_mandatory/00_7help_quote.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md b/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md deleted file mode 100644 index 1446148f..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_sup.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : [- string1 -] ← loaded from rougail-test - - :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_sup.md b/tests/results/test_namespace_mandatory/00_7help_sup.md deleted file mode 100644 index 39e65110..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_sup.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : string1 ← loaded from rougail-test - - :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7help_sup.sh b/tests/results/test_namespace_mandatory/00_7help_sup.sh deleted file mode 100644 index 6e9a8afe..00000000 --- a/tests/results/test_namespace_mandatory/00_7help_sup.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first : string1 ◀ loaded from rougail-test - ┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md deleted file mode 100644 index 368efedf..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote.md b/tests/results/test_namespace_mandatory/00_7value_doublequote.md deleted file mode 100644 index a4c3f7ca..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote.sh b/tests/results/test_namespace_mandatory/00_7value_doublequote.sh deleted file mode 100644 index b52940bd..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 31b6351a..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote2.md b/tests/results/test_namespace_mandatory/00_7value_doublequote2.md deleted file mode 100644 index 803a52dc..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote2.sh b/tests/results/test_namespace_mandatory/00_7value_doublequote2.sh deleted file mode 100644 index dc59ccd3..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 96f5911c..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote3.md b/tests/results/test_namespace_mandatory/00_7value_doublequote3.md deleted file mode 100644 index fd3e6aea..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_mandatory/00_7value_doublequote3.sh b/tests/results/test_namespace_mandatory/00_7value_doublequote3.sh deleted file mode 100644 index d33d0502..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_doublequote3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md b/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md deleted file mode 100644 index ff15f571..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory/00_7value_quote.md b/tests/results/test_namespace_mandatory/00_7value_quote.md deleted file mode 100644 index 5e710274..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory/00_7value_quote.sh b/tests/results/test_namespace_mandatory/00_7value_quote.sh deleted file mode 100644 index 647669b2..00000000 --- a/tests/results/test_namespace_mandatory/00_7value_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_8calculation_information.md b/tests/results/test_namespace_mandatory/00_8calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_8calculation_information.sh b/tests/results/test_namespace_mandatory/00_8calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8calculation_namespace.md b/tests/results/test_namespace_mandatory/00_8calculation_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8calculation_namespace.sh b/tests/results/test_namespace_mandatory/00_8calculation_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.md b/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.sh b/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_mandatory/00_8calculation_param_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_mandatory/00_8test.gitlab.md b/tests/results/test_namespace_mandatory/00_8test.gitlab.md deleted file mode 100644 index e0555351..00000000 --- a/tests/results/test_namespace_mandatory/00_8test.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- test -] ← loaded from rougail-test - - :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- test1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_8test.md b/tests/results/test_namespace_mandatory/00_8test.md deleted file mode 100644 index 8a0190f0..00000000 --- a/tests/results/test_namespace_mandatory/00_8test.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: test ← loaded from rougail-test - - :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: test1 ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_8test.sh b/tests/results/test_namespace_mandatory/00_8test.sh deleted file mode 100644 index 3aa8ce13..00000000 --- a/tests/results/test_namespace_mandatory/00_8test.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: test ◀ loaded from rougail-test - ┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the sixth variable: -  ┣━━ test1 ◀ loaded from rougail-test -  ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index 78961ce9..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.md b/tests/results/test_namespace_mandatory/00_9choice_variable_multi.md deleted file mode 100644 index 992d57f8..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory/00_9choice_variable_multi.sh deleted file mode 100644 index 0d0c89ed..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test -  ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md deleted file mode 100644 index 9eef33ed..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_mandatory/00_9choice_variables.md b/tests/results/test_namespace_mandatory/00_9choice_variables.md deleted file mode 100644 index f1f1b93d..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variables.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_mandatory/00_9choice_variables.sh b/tests/results/test_namespace_mandatory/00_9choice_variables.sh deleted file mode 100644 index 01ed0aac..00000000 --- a/tests/results/test_namespace_mandatory/00_9choice_variables.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md deleted file mode 100644 index 79eca35c..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation.md b/tests/results/test_namespace_mandatory/00_9default_calculation.md deleted file mode 100644 index 12e54e33..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation.sh b/tests/results/test_namespace_mandatory/00_9default_calculation.sh deleted file mode 100644 index 6ba63ff2..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index bda2cca8..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 55a02d30..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 581a9b67..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index 9b88f57c..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional.md deleted file mode 100644 index efea5ac0..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_optional.sh deleted file mode 100644 index faba17e7..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 95ebc9c2..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.md deleted file mode 100644 index 2e320fbf..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.sh deleted file mode 100644 index df02aa45..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index f204422c..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.md b/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.md deleted file mode 100644 index cd26f538..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.sh deleted file mode 100644 index 2089d1b1..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.sh b/tests/results/test_namespace_mandatory/00_9default_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.md b/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.sh b/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_9default_integer.md b/tests/results/test_namespace_mandatory/00_9default_integer.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_9default_integer.sh b/tests/results/test_namespace_mandatory/00_9default_integer.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md b/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_number.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_9default_number.md b/tests/results/test_namespace_mandatory/00_9default_number.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_number.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory/00_9default_number.sh b/tests/results/test_namespace_mandatory/00_9default_number.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory/00_9default_number.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory/00_9extra.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra.gitlab.md deleted file mode 100644 index aeac8ccc..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/00_9extra.md b/tests/results/test_namespace_mandatory/00_9extra.md deleted file mode 100644 index 0cae1eaf..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/00_9extra.sh b/tests/results/test_namespace_mandatory/00_9extra.sh deleted file mode 100644 index 47bb8105..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ rougail) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md deleted file mode 100644 index 1572b468..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_calculation.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_9extra_calculation.md b/tests/results/test_namespace_mandatory/00_9extra_calculation.md deleted file mode 100644 index e4c7dead..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_calculation.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/00_9extra_calculation.sh b/tests/results/test_namespace_mandatory/00_9extra_calculation.sh deleted file mode 100644 index 68331fce..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_calculation.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📂 extra - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md deleted file mode 100644 index 8fb88762..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_ouside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_mandatory/00_9extra_ouside.md b/tests/results/test_namespace_mandatory/00_9extra_ouside.md deleted file mode 100644 index 81751d7f..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_ouside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_mandatory/00_9extra_ouside.sh b/tests/results/test_namespace_mandatory/00_9extra_ouside.sh deleted file mode 100644 index cc1f0f13..00000000 --- a/tests/results/test_namespace_mandatory/00_9extra_ouside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value in extra) diff --git a/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md deleted file mode 100644 index f6b87dbe..00000000 --- a/tests/results/test_namespace_mandatory/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/01_6boolean_multi.md b/tests/results/test_namespace_mandatory/01_6boolean_multi.md deleted file mode 100644 index 284d7063..00000000 --- a/tests/results/test_namespace_mandatory/01_6boolean_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/01_6boolean_multi.sh b/tests/results/test_namespace_mandatory/01_6boolean_multi.sh deleted file mode 100644 index e45514be..00000000 --- a/tests/results/test_namespace_mandatory/01_6boolean_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the sixth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the seventh variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the eighth variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md deleted file mode 100644 index f8aac52f..00000000 --- a/tests/results/test_namespace_mandatory/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6custom_multi.md b/tests/results/test_namespace_mandatory/01_6custom_multi.md deleted file mode 100644 index 6cca5a48..00000000 --- a/tests/results/test_namespace_mandatory/01_6custom_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6custom_multi.sh b/tests/results/test_namespace_mandatory/01_6custom_multi.sh deleted file mode 100644 index 18b7d908..00000000 --- a/tests/results/test_namespace_mandatory/01_6custom_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first custom variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second custom variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md deleted file mode 100644 index d8759ea9..00000000 --- a/tests/results/test_namespace_mandatory/01_6float_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6float_multi.md b/tests/results/test_namespace_mandatory/01_6float_multi.md deleted file mode 100644 index 64a787de..00000000 --- a/tests/results/test_namespace_mandatory/01_6float_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6float_multi.sh b/tests/results/test_namespace_mandatory/01_6float_multi.sh deleted file mode 100644 index 04abfcfb..00000000 --- a/tests/results/test_namespace_mandatory/01_6float_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -  ┣━━ 2.2 ◀ loaded from rougail-test -  ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md deleted file mode 100644 index 46d9794a..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi.md b/tests/results/test_namespace_mandatory/01_6integer_multi.md deleted file mode 100644 index e6846109..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi.sh b/tests/results/test_namespace_mandatory/01_6integer_multi.sh deleted file mode 100644 index ed6b4eb1..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 6e862990..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.md b/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.md deleted file mode 100644 index 69830973..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.sh deleted file mode 100644 index 52ca76a0..00000000 --- a/tests/results/test_namespace_mandatory/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the first variable: -  ┣━━ 1 ◀ loaded from rougail-test -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md deleted file mode 100644 index ca44d251..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_empty.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_empty.md b/tests/results/test_namespace_mandatory/01_6string_empty.md deleted file mode 100644 index a20a6db9..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_empty.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_empty.sh b/tests/results/test_namespace_mandatory/01_6string_empty.sh deleted file mode 100644 index 85d95838..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_empty.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ null) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md deleted file mode 100644 index 28cbdcb4..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi.md b/tests/results/test_namespace_mandatory/01_6string_multi.md deleted file mode 100644 index 9e7a4720..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi.sh b/tests/results/test_namespace_mandatory/01_6string_multi.sh deleted file mode 100644 index d36888f6..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md deleted file mode 100644 index 9c4a3f4d..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi_length.md b/tests/results/test_namespace_mandatory/01_6string_multi_length.md deleted file mode 100644 index 47e7caa2..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi_length.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_6string_multi_length.sh b/tests/results/test_namespace_mandatory/01_6string_multi_length.sh deleted file mode 100644 index 0341d171..00000000 --- a/tests/results/test_namespace_mandatory/01_6string_multi_length.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) - ┗━━ 📓 the variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index b06b1980..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.md deleted file mode 100644 index d9705693..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.sh b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.sh deleted file mode 100644 index 751c749d..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index a1d0fea1..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.md b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.md deleted file mode 100644 index b46dd95d..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.sh deleted file mode 100644 index 4ee8bc93..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 5a371283..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_quote.md b/tests/results/test_namespace_mandatory/01_7value_multi_quote.md deleted file mode 100644 index 42b0526a..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_quote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_7value_multi_quote.sh b/tests/results/test_namespace_mandatory/01_7value_multi_quote.sh deleted file mode 100644 index 7a90e727..00000000 --- a/tests/results/test_namespace_mandatory/01_7value_multi_quote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 603a7cc3..00000000 --- a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.md b/tests/results/test_namespace_mandatory/01_8calculation_information_multi.md deleted file mode 100644 index c17e123d..00000000 --- a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.sh b/tests/results/test_namespace_mandatory/01_8calculation_information_multi.sh deleted file mode 100644 index 2885d4da..00000000 --- a/tests/results/test_namespace_mandatory/01_8calculation_information_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index 58b87f90..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.md b/tests/results/test_namespace_mandatory/01_9choice_variable_multi.md deleted file mode 100644 index 885fb8fe..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory/01_9choice_variable_multi.sh deleted file mode 100644 index ddc32137..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index 0be08c2e..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.md b/tests/results/test_namespace_mandatory/01_9choice_variable_optional.md deleted file mode 100644 index 7c9aec52..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.sh b/tests/results/test_namespace_mandatory/01_9choice_variable_optional.sh deleted file mode 100644 index 47508134..00000000 --- a/tests/results/test_namespace_mandatory/01_9choice_variable_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_mandatory/02_0tags.gitlab.md b/tests/results/test_namespace_mandatory/02_0tags.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory/02_0tags.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/02_0tags.md b/tests/results/test_namespace_mandatory/02_0tags.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory/02_0tags.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/02_0tags.sh b/tests/results/test_namespace_mandatory/02_0tags.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory/02_0tags.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md b/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md deleted file mode 100644 index 5ab9ef91..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/04_0type_param.md b/tests/results/test_namespace_mandatory/04_0type_param.md deleted file mode 100644 index b3de1dac..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/04_0type_param.sh b/tests/results/test_namespace_mandatory/04_0type_param.sh deleted file mode 100644 index 8b8121ad..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md deleted file mode 100644 index 71377428..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/04_0type_param_integer.md b/tests/results/test_namespace_mandatory/04_0type_param_integer.md deleted file mode 100644 index 3b487a4e..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory/04_0type_param_integer.sh b/tests/results/test_namespace_mandatory/04_0type_param_integer.sh deleted file mode 100644 index cf4e0fc9..00000000 --- a/tests/results/test_namespace_mandatory/04_0type_param_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md deleted file mode 100644 index 589647d6..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_namespace_mandatory/04_1auto_save.md b/tests/results/test_namespace_mandatory/04_1auto_save.md deleted file mode 100644 index 8e0d9204..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: no diff --git a/tests/results/test_namespace_mandatory/04_1auto_save.sh b/tests/results/test_namespace_mandatory/04_1auto_save.sh deleted file mode 100644 index fbc3cceb..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index cda0de5b..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- no -] diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.md deleted file mode 100644 index 9058d89c..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: no diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.sh deleted file mode 100644 index 5c00df9e..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: no diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index ed6a29b9..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- yes -] diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index fdee8486..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: yes diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 01da0468..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: yes diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index 1908e439..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ autosave variable +]: [- yes -] diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.md b/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.md deleted file mode 100644 index 6bf614eb..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: autosave variable: yes diff --git a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.sh deleted file mode 100644 index 4c0156d2..00000000 --- a/tests/results/test_namespace_mandatory/04_1auto_save_and_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ Unmodifiable variable │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 autosave variable: yes diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 3a5dd936..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ value +] - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.md deleted file mode 100644 index 23c09bdd..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: value - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.sh deleted file mode 100644 index c6df6264..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: value - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index 756940d2..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ value +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7da4ebc8..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: value - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.sh deleted file mode 100644 index 4dd8e22e..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 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/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index 03d2ebce..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: [+ a second variable +]: [+ string1 +] - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.md deleted file mode 100644 index 6ac54ab3..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.sh deleted file mode 100644 index a4887d6d..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 53efa563..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.md b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.md deleted file mode 100644 index 0e3f2b95..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 diff --git a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.sh deleted file mode 100644 index 2e13c950..00000000 --- a/tests/results/test_namespace_mandatory/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md deleted file mode 100644 index b195f1ac..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation.md deleted file mode 100644 index 5cf4f819..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation.sh deleted file mode 100644 index 4e6546b4..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 41155c8d..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.md deleted file mode 100644 index 19e7c258..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.sh deleted file mode 100644 index 634fa9f2..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_default.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md deleted file mode 100644 index 57c6d9fa..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.md deleted file mode 100644 index 3f45fb25..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.sh deleted file mode 100644 index 297c46fe..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_multi.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index a563a796..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: [+ a first variable +]: [+ null +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.md deleted file mode 100644 index 22f79056..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: null - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.sh deleted file mode 100644 index 7fd5c7b7..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: null - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index 5fe9cb95..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: [+ a first variable +]: [+ null +] - - :notebook: [+ a second variable +]: [+ null +] - - :notebook: [+ a forth variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 179db4c5..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a first variable: null - - :notebook: a second variable: null - - :notebook: a forth variable: null diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index c26a388c..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 - ┣━━ 📓 a second variable: null - ┗━━ 📓 a forth variable: null diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index ec72b58f..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.md deleted file mode 100644 index 6781fea0..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 24ec7e5a..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 381729f5..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.md deleted file mode 100644 index 009536b8..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 42b6b592..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 28774a6b..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a condition +]: [+ false +] - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.md deleted file mode 100644 index 0aee8294..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: false - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.sh deleted file mode 100644 index ec7d8397..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: false - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e45b5280..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a condition +]: [+ true +] diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.md deleted file mode 100644 index 4e9a4243..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.sh deleted file mode 100644 index 9c4d0606..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable8.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.md b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md deleted file mode 100644 index 0cd62c2f..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation.md deleted file mode 100644 index 64bdf8cf..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation.sh b/tests/results/test_namespace_mandatory/04_5hidden_calculation.sh deleted file mode 100644 index 8a205788..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md deleted file mode 100644 index 9dee9bb6..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: [+ a first variable +]: [+ string1 +] - - :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation2.md deleted file mode 100644 index ed338f93..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 - - :notebook: a second variable: string1 diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.sh b/tests/results/test_namespace_mandatory/04_5hidden_calculation2.sh deleted file mode 100644 index a116ca16..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 - ┗━━ 📓 a second variable: string1 diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_mandatory/04_5hidden_calculation_default_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_mandatory/04_5validators.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators.gitlab.md deleted file mode 100644 index a8452724..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators.md b/tests/results/test_namespace_mandatory/04_5validators.md deleted file mode 100644 index 19b3aa83..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators.sh b/tests/results/test_namespace_mandatory/04_5validators.sh deleted file mode 100644 index efea506a..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md deleted file mode 100644 index 9b068281..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/04_5validators_differ.md b/tests/results/test_namespace_mandatory/04_5validators_differ.md deleted file mode 100644 index 72472698..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_differ.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory/04_5validators_differ.sh b/tests/results/test_namespace_mandatory/04_5validators_differ.sh deleted file mode 100644 index 27df2808..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_differ.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) - ┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md deleted file mode 100644 index d1d91485..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi.md b/tests/results/test_namespace_mandatory/04_5validators_multi.md deleted file mode 100644 index d4007c71..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi.sh b/tests/results/test_namespace_mandatory/04_5validators_multi.sh deleted file mode 100644 index a4f78070..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md deleted file mode 100644 index 287ee192..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi2.md b/tests/results/test_namespace_mandatory/04_5validators_multi2.md deleted file mode 100644 index 9b5b4020..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi2.sh b/tests/results/test_namespace_mandatory/04_5validators_multi2.sh deleted file mode 100644 index 0ee860e8..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test (⏳ no) -  ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md deleted file mode 100644 index c405e423..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi3.md b/tests/results/test_namespace_mandatory/04_5validators_multi3.md deleted file mode 100644 index a4131fe4..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/04_5validators_multi3.sh b/tests/results/test_namespace_mandatory/04_5validators_multi3.sh deleted file mode 100644 index 43878be7..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_multi3.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ (⏳ 1) -  ┗━━ (⏳ 2) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings.md b/tests/results/test_namespace_mandatory/04_5validators_warnings.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings.sh b/tests/results/test_namespace_mandatory/04_5validators_warnings.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.md b/tests/results/test_namespace_mandatory/04_5validators_warnings_all.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.sh b/tests/results/test_namespace_mandatory/04_5validators_warnings_all.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_mandatory/04_5validators_warnings_all.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.md b/tests/results/test_namespace_mandatory/05_0multi_not_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.sh b/tests/results/test_namespace_mandatory/05_0multi_not_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_not_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/05_0multi_uniq.md b/tests/results/test_namespace_mandatory/05_0multi_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/05_0multi_uniq.sh b/tests/results/test_namespace_mandatory/05_0multi_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory/05_0multi_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md deleted file mode 100644 index d6c2e386..00000000 --- a/tests/results/test_namespace_mandatory/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- no -] diff --git a/tests/results/test_namespace_mandatory/12_1auto_save_expert.md b/tests/results/test_namespace_mandatory/12_1auto_save_expert.md deleted file mode 100644 index 70329de2..00000000 --- a/tests/results/test_namespace_mandatory/12_1auto_save_expert.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_mandatory/12_1auto_save_expert.sh b/tests/results/test_namespace_mandatory/12_1auto_save_expert.sh deleted file mode 100644 index 49f35116..00000000 --- a/tests/results/test_namespace_mandatory/12_1auto_save_expert.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md deleted file mode 100644 index 10a88bd3..00000000 --- a/tests/results/test_namespace_mandatory/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_0redefine_description.md b/tests/results/test_namespace_mandatory/16_0redefine_description.md deleted file mode 100644 index 4b50aa75..00000000 --- a/tests/results/test_namespace_mandatory/16_0redefine_description.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_0redefine_description.sh b/tests/results/test_namespace_mandatory/16_0redefine_description.sh deleted file mode 100644 index 37707cfb..00000000 --- a/tests/results/test_namespace_mandatory/16_0redefine_description.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.md b/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.sh b/tests/results/test_namespace_mandatory/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.gitlab.md b/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.md b/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.sh b/tests/results/test_namespace_mandatory/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index dd65182a..00000000 --- a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.md b/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.md deleted file mode 100644 index 7b7f9ecd..00000000 --- a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.sh b/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.sh deleted file mode 100644 index 614cad00..00000000 --- a/tests/results/test_namespace_mandatory/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md deleted file mode 100644 index d1f1ccf4..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5exists_nonexists.md b/tests/results/test_namespace_mandatory/16_5exists_nonexists.md deleted file mode 100644 index 178ce451..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_nonexists.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5exists_nonexists.sh b/tests/results/test_namespace_mandatory/16_5exists_nonexists.sh deleted file mode 100644 index 23becc10..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_nonexists.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md deleted file mode 100644 index f09d0633..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ yes +] diff --git a/tests/results/test_namespace_mandatory/16_5exists_redefine.md b/tests/results/test_namespace_mandatory/16_5exists_redefine.md deleted file mode 100644 index c7486fd7..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: yes diff --git a/tests/results/test_namespace_mandatory/16_5exists_redefine.sh b/tests/results/test_namespace_mandatory/16_5exists_redefine.sh deleted file mode 100644 index 470d2baa..00000000 --- a/tests/results/test_namespace_mandatory/16_5exists_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: yes diff --git a/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_calculation.md b/tests/results/test_namespace_mandatory/16_5redefine_calculation.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_calculation.sh b/tests/results/test_namespace_mandatory/16_5redefine_calculation.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md deleted file mode 100644 index f759e9a7..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_choice.md b/tests/results/test_namespace_mandatory/16_5redefine_choice.md deleted file mode 100644 index a7111393..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_choice.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_choice.sh b/tests/results/test_namespace_mandatory/16_5redefine_choice.sh deleted file mode 100644 index f07415c6..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_choice.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default.md b/tests/results/test_namespace_mandatory/16_5redefine_default.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default.sh b/tests/results/test_namespace_mandatory/16_5redefine_default.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.md b/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.sh b/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md deleted file mode 100644 index ca57cd14..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_family.md b/tests/results/test_namespace_mandatory/16_5redefine_family.md deleted file mode 100644 index 57f96de9..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_family.sh b/tests/results/test_namespace_mandatory/16_5redefine_family.sh deleted file mode 100644 index 3a5a9f72..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 new description -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md deleted file mode 100644 index 9f143013..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_help.md b/tests/results/test_namespace_mandatory/16_5redefine_help.md deleted file mode 100644 index bb413ada..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_help.sh b/tests/results/test_namespace_mandatory/16_5redefine_help.sh deleted file mode 100644 index d76873b1..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md deleted file mode 100644 index 4a8465c1..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a variable +]: [+ no +] diff --git a/tests/results/test_namespace_mandatory/16_5redefine_hidden.md b/tests/results/test_namespace_mandatory/16_5redefine_hidden.md deleted file mode 100644 index 355256ce..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_mandatory/16_5redefine_hidden.sh b/tests/results/test_namespace_mandatory/16_5redefine_hidden.sh deleted file mode 100644 index ffcc8564..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_multi.md b/tests/results/test_namespace_mandatory/16_5redefine_multi.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_multi.sh b/tests/results/test_namespace_mandatory/16_5redefine_multi.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_mandatory/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md deleted file mode 100644 index 7a451ad4..00000000 --- a/tests/results/test_namespace_mandatory/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5test_redefine.md b/tests/results/test_namespace_mandatory/16_5test_redefine.md deleted file mode 100644 index 9b3b41d4..00000000 --- a/tests/results/test_namespace_mandatory/16_5test_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_5test_redefine.sh b/tests/results/test_namespace_mandatory/16_5test_redefine.sh deleted file mode 100644 index f95d5c96..00000000 --- a/tests/results/test_namespace_mandatory/16_5test_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md deleted file mode 100644 index b257a746..00000000 --- a/tests/results/test_namespace_mandatory/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory/16_6choice_redefine.md b/tests/results/test_namespace_mandatory/16_6choice_redefine.md deleted file mode 100644 index 3680b158..00000000 --- a/tests/results/test_namespace_mandatory/16_6choice_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory/16_6choice_redefine.sh b/tests/results/test_namespace_mandatory/16_6choice_redefine.sh deleted file mode 100644 index 95081cf8..00000000 --- a/tests/results/test_namespace_mandatory/16_6choice_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_mandatory/16_6exists_family.gitlab.md b/tests/results/test_namespace_mandatory/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_6exists_family.md b/tests/results/test_namespace_mandatory/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_6exists_family.sh b/tests/results/test_namespace_mandatory/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f308e3a6..00000000 --- a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.md b/tests/results/test_namespace_mandatory/16_6exists_redefine_family.md deleted file mode 100644 index ca4feef3..00000000 --- a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.sh b/tests/results/test_namespace_mandatory/16_6exists_redefine_family.sh deleted file mode 100644 index 716e4666..00000000 --- a/tests/results/test_namespace_mandatory/16_6exists_redefine_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 new description - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a second family -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md b/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md deleted file mode 100644 index 69e26651..00000000 --- a/tests/results/test_namespace_mandatory/16exists_exists.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16exists_exists.md b/tests/results/test_namespace_mandatory/16exists_exists.md deleted file mode 100644 index 8e7347ed..00000000 --- a/tests/results/test_namespace_mandatory/16exists_exists.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/16exists_exists.sh b/tests/results/test_namespace_mandatory/16exists_exists.sh deleted file mode 100644 index e572c5de..00000000 --- a/tests/results/test_namespace_mandatory/16exists_exists.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory/17_5redefine_leadership.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory/17_5redefine_leadership.md b/tests/results/test_namespace_mandatory/17_5redefine_leadership.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory/17_5redefine_leadership.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory/17_5redefine_leadership.sh b/tests/results/test_namespace_mandatory/17_5redefine_leadership.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory/17_5redefine_leadership.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory/20_0empty_family.gitlab.md b/tests/results/test_namespace_mandatory/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0empty_family.md b/tests/results/test_namespace_mandatory/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0empty_family.sh b/tests/results/test_namespace_mandatory/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md b/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md deleted file mode 100644 index fcc4d7fe..00000000 --- a/tests/results/test_namespace_mandatory/20_0family_append.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0family_append.md b/tests/results/test_namespace_mandatory/20_0family_append.md deleted file mode 100644 index 05dd4c7c..00000000 --- a/tests/results/test_namespace_mandatory/20_0family_append.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0family_append.sh b/tests/results/test_namespace_mandatory/20_0family_append.sh deleted file mode 100644 index 4668f151..00000000 --- a/tests/results/test_namespace_mandatory/20_0family_append.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A family -  ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0family_underscore.gitlab.md b/tests/results/test_namespace_mandatory/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0family_underscore.md b/tests/results/test_namespace_mandatory/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0family_underscore.sh b/tests/results/test_namespace_mandatory/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family.md b/tests/results/test_namespace_mandatory/20_0multi_family.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family.sh b/tests/results/test_namespace_mandatory/20_0multi_family.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_basic.md b/tests/results/test_namespace_mandatory/20_0multi_family_basic.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_basic.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_basic.sh b/tests/results/test_namespace_mandatory/20_0multi_family_basic.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_basic.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_expert.md b/tests/results/test_namespace_mandatory/20_0multi_family_expert.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_expert.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_expert.sh b/tests/results/test_namespace_mandatory/20_0multi_family_expert.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_expert.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md deleted file mode 100644 index ee5c84a0..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_order.md b/tests/results/test_namespace_mandatory/20_0multi_family_order.md deleted file mode 100644 index d55f9aff..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_order.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0multi_family_order.sh b/tests/results/test_namespace_mandatory/20_0multi_family_order.sh deleted file mode 100644 index c245712f..00000000 --- a/tests/results/test_namespace_mandatory/20_0multi_family_order.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a sub family -  ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 23cf1572..00000000 --- a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.md b/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.md deleted file mode 100644 index bd753eb0..00000000 --- a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.sh b/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.sh deleted file mode 100644 index ff6184ad..00000000 --- a/tests/results/test_namespace_mandatory/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/20_1empty_subfamily.gitlab.md b/tests/results/test_namespace_mandatory/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_1empty_subfamily.md b/tests/results/test_namespace_mandatory/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_1empty_subfamily.sh b/tests/results/test_namespace_mandatory/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index 9bf0d70c..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.md deleted file mode 100644 index 93b860df..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.sh deleted file mode 100644 index 1905b9c3..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┣━━ 📓 dynamic: -  ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 56cb8522..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.md b/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.md deleted file mode 100644 index 0073c1d5..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.sh b/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.sh deleted file mode 100644 index 6f7622e7..00000000 --- a/tests/results/test_namespace_mandatory/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md b/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md deleted file mode 100644 index 7818a4f7..00000000 --- a/tests/results/test_namespace_mandatory/20_7help_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_7help_family.md b/tests/results/test_namespace_mandatory/20_7help_family.md deleted file mode 100644 index 4351668d..00000000 --- a/tests/results/test_namespace_mandatory/20_7help_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_7help_family.sh b/tests/results/test_namespace_mandatory/20_7help_family.sh deleted file mode 100644 index f302d635..00000000 --- a/tests/results/test_namespace_mandatory/20_7help_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 the first family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 the second family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md deleted file mode 100644 index 130fb755..00000000 --- a/tests/results/test_namespace_mandatory/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_9default_information_parent.md b/tests/results/test_namespace_mandatory/20_9default_information_parent.md deleted file mode 100644 index 4d6baa86..00000000 --- a/tests/results/test_namespace_mandatory/20_9default_information_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/20_9default_information_parent.sh b/tests/results/test_namespace_mandatory/20_9default_information_parent.sh deleted file mode 100644 index ae65e2c0..00000000 --- a/tests/results/test_namespace_mandatory/20_9default_information_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md deleted file mode 100644 index fcb3871a..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition.md deleted file mode 100644 index a86a61c0..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_condition.sh deleted file mode 100644 index da5651af..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md deleted file mode 100644 index 8c36dd68..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.md deleted file mode 100644 index f9bb12d8..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.sh deleted file mode 100644 index a5da6e15..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_boolean.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📂 a family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 18e5d369..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f971677c..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 709bdc74..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 2b57a2b2..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: [+ possibly hidden family +] - - :open_file_folder: [+ a subfamily +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index d8973e41..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: null diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index ece62f85..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md deleted file mode 100644 index ad196a2c..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.md deleted file mode 100644 index 58e5bcfb..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: null diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.sh deleted file mode 100644 index f6e93aca..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_condition_with_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 892a6f62..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index 65358fb2..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 3b98238c..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 a subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.sh b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index ea03d0e8..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.md deleted file mode 100644 index 4b9ada76..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index ccb87621..00000000 --- a/tests/results/test_namespace_mandatory/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index c9a709ab..00000000 --- a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.md b/tests/results/test_namespace_mandatory/24_7validators_variable_optional.md deleted file mode 100644 index 95ce84c2..00000000 --- a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.sh b/tests/results/test_namespace_mandatory/24_7validators_variable_optional.sh deleted file mode 100644 index a44a9537..00000000 --- a/tests/results/test_namespace_mandatory/24_7validators_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test -  ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.md b/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_mandatory/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership.md b/tests/results/test_namespace_mandatory/40_0leadership.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership.sh b/tests/results/test_namespace_mandatory/40_0leadership.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.md b/tests/results/test_namespace_mandatory/40_0leadership_diff_name.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.sh b/tests/results/test_namespace_mandatory/40_0leadership_diff_name.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_diff_name.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/40_0leadership_empty.md b/tests/results/test_namespace_mandatory/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/40_0leadership_empty.sh b/tests/results/test_namespace_mandatory/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 951efe61..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.md deleted file mode 100644 index 3e4359a0..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index c1a9e421..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md deleted file mode 100644 index 6260abf7..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.md deleted file mode 100644 index 33e8c616..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.sh deleted file mode 100644 index 4798d509..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md deleted file mode 100644 index 5601ba9f..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.md deleted file mode 100644 index a464bc15..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.sh deleted file mode 100644 index e56c937e..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_submulti_calculation.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 22902558..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.md b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.md deleted file mode 100644 index be502540..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.sh deleted file mode 100644 index d0145bc3..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 155ae333..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.md deleted file mode 100644 index 4b9c3a59..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.sh b/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.sh deleted file mode 100644 index 9232a71b..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 49a94371..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.md b/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.md deleted file mode 100644 index 7bb2ca00..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.sh deleted file mode 100644 index caf94ed4..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 general - ┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📂 general1 -  ┗━━ 📂 leader -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 leader -    ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md deleted file mode 100644 index 5d9de3fb..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_reduce.md b/tests/results/test_namespace_mandatory/40_0leadership_reduce.md deleted file mode 100644 index 8d0e32b4..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_reduce.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_0leadership_reduce.sh b/tests/results/test_namespace_mandatory/40_0leadership_reduce.sh deleted file mode 100644 index c8acc755..00000000 --- a/tests/results/test_namespace_mandatory/40_0leadership_reduce.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -   ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index dee2a6d3..00000000 --- a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.md b/tests/results/test_namespace_mandatory/40_1leadership_append_follower.md deleted file mode 100644 index 814a7898..00000000 --- a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.sh b/tests/results/test_namespace_mandatory/40_1leadership_append_follower.sh deleted file mode 100644 index 92836c84..00000000 --- a/tests/results/test_namespace_mandatory/40_1leadership_append_follower.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.sh b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md deleted file mode 100644 index ffb5fec5..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.md b/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.md deleted file mode 100644 index cbdf8529..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.sh deleted file mode 100644 index dc0c00f2..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_calculation_param_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md deleted file mode 100644 index 7dd2a13a..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: [- string1 -] ← loaded from rougail-test - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: [- string2 -] ← loaded from rougail-test - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a first follower: [- string3 -] ← loaded from rougail-test - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.md b/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.md deleted file mode 100644 index 77555235..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: string1 ← loaded from rougail-test - - :notebook: a second follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: string2 ← loaded from rougail-test - - :notebook: a second follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a first follower: string3 ← loaded from rougail-test - - :notebook: a second follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.sh deleted file mode 100644 index 5a551251..00000000 --- a/tests/results/test_namespace_mandatory/40_2leadership_leader_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ 📓 a first follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┣━━ 📓 a first follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a first follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.sh b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_mandatory/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md deleted file mode 100644 index 2fd2afac..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean.md deleted file mode 100644 index 58513928..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean.sh b/tests/results/test_namespace_mandatory/40_8calculation_boolean.sh deleted file mode 100644 index e11ff294..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 a first multi variable: - ┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) - ┃ ┗━━ (⏳ false) - ┗━━ 📓 a second multi variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md deleted file mode 100644 index e5a29bfc..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: [- true -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.md b/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.md deleted file mode 100644 index eb03c244..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: true ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.sh deleted file mode 100644 index 10bcd049..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_boolean_return_none.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a second variable: true ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md deleted file mode 100644 index fe13f94e..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_integer.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_integer.md b/tests/results/test_namespace_mandatory/40_8calculation_integer.md deleted file mode 100644 index b5e804c8..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_integer.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_integer.sh b/tests/results/test_namespace_mandatory/40_8calculation_integer.sh deleted file mode 100644 index 82566a24..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_integer.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 first integer variable: 1 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📓 second integer variable: 1 ◀ loaded from rougail-test (⏳ 4) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index dc2ee9ce..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.md deleted file mode 100644 index 61402ea8..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.sh b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.sh deleted file mode 100644 index 2fc25998..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index f5500bde..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e04f7b41..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 00792e71..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a family -  ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index 1e731359..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 75031777..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index a75ed8c3..00000000 --- a/tests/results/test_namespace_mandatory/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 first family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 second family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index af861c6a..00000000 --- a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index 86ac86a3..00000000 --- a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index 6576e5bc..00000000 --- a/tests/results/test_namespace_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 430a2447..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index 6f1d212e..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 6dbe6cff..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index e7cde94e..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index bb85f044..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 239aef89..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 2e14eb73..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test - - :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index 10272605..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test - - :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index a4b48bd9..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leader - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 leader - ┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test - ┗━━ 📓 variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 78e937f9..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 61a6efb1..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 65296704..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index b4b858ff..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index 7ce44ede..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index ae080aaa..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 900df4e4..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.md deleted file mode 100644 index 3e994562..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.sh deleted file mode 100644 index a9cfe4d2..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a calculated variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 950cd91e..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 0f41960b..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,29 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index 153ef6b1..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,26 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 36879bba..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index b92a2b55..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 6526a49a..00000000 --- a/tests/results/test_namespace_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md deleted file mode 100644 index 47b922dd..00000000 --- a/tests/results/test_namespace_mandatory/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/41_0choice_leader.md b/tests/results/test_namespace_mandatory/41_0choice_leader.md deleted file mode 100644 index 624251f4..00000000 --- a/tests/results/test_namespace_mandatory/41_0choice_leader.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/41_0choice_leader.sh b/tests/results/test_namespace_mandatory/41_0choice_leader.sh deleted file mode 100644 index 05a60f10..00000000 --- a/tests/results/test_namespace_mandatory/41_0choice_leader.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 The leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory/44_0leadership_hidden.md b/tests/results/test_namespace_mandatory/44_0leadership_hidden.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_0leadership_hidden.sh b/tests/results/test_namespace_mandatory/44_0leadership_hidden.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.md b/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory/44_0leadership_leader_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory/44_1leadership_append_hidden_follower.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md deleted file mode 100644 index 7b5e2fcd..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.md deleted file mode 100644 index f3c31f4a..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.sh deleted file mode 100644 index 7e983835..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index c94e7f8e..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index 788a4221..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index ed8c275a..00000000 --- a/tests/results/test_namespace_mandatory/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.sh b/tests/results/test_namespace_mandatory/44_4leadership_mandatory.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.md b/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_mandatory/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 164950d9..00000000 --- a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index 10f5dc08..00000000 --- a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index 1e806099..00000000 --- a/tests/results/test_namespace_mandatory/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index 23d88b47..00000000 --- a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index bd555e36..00000000 --- a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index 55f68461..00000000 --- a/tests/results/test_namespace_mandatory/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md deleted file mode 100644 index ece30473..00000000 --- a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.md deleted file mode 100644 index 8f91e324..00000000 --- a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.sh deleted file mode 100644 index 7d40319d..00000000 --- a/tests/results/test_namespace_mandatory/44_9calculated_default_leadership_leader.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leader -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic.md b/tests/results/test_namespace_mandatory/60_0family_dynamic.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md deleted file mode 100644 index b6381c78..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.md deleted file mode 100644 index 0bff1880..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.sh deleted file mode 100644 index 7ce61e50..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md deleted file mode 100644 index 61798b1c..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.md deleted file mode 100644 index 812ccfa3..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.sh deleted file mode 100644 index 83a49c2e..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md deleted file mode 100644 index 0c649ccb..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.md deleted file mode 100644 index 7453d466..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.sh deleted file mode 100644 index 3aaa13d2..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md deleted file mode 100644 index 10cab53f..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.md deleted file mode 100644 index ad92b1f4..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.sh deleted file mode 100644 index ef631cf8..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_0_type_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index 0aeb0d2b..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.md deleted file mode 100644 index 56f388ce..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.sh deleted file mode 100644 index 6d7c1315..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index 6ba3e9a5..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index 2a9c0342..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index debc28e9..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md deleted file mode 100644 index 9d322e4a..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.md deleted file mode 100644 index d0aab92f..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.sh deleted file mode 100644 index 833a7c15..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_integer_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test - ┃ ┗━━ 2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md deleted file mode 100644 index 1d7565d1..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.md deleted file mode 100644 index 622ee06e..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - 2 ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.sh deleted file mode 100644 index 3c9f31d0..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_jinja_number.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 1) - ┃ ┗━━ 2 ◀ loaded from rougail-test (⏳ 2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index 0d314879..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.md deleted file mode 100644 index b6183bcc..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.sh deleted file mode 100644 index 12e127fa..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index 91335f10..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 2b3db0c4..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index f165eac7..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index e377f81f..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ A suffix variable +]: - - [+ val1 +] - - [+ val2 +] - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 40a55b32..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 - - val2 - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index d435b25f..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 - ┃ ┗━━ val2 - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index f1cdce30..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_static.md deleted file mode 100644 index 5d503845..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_static.sh deleted file mode 100644 index f591169c..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_static.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_test.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_test.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 221c10b1..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.md deleted file mode 100644 index 31eb49da..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.sh deleted file mode 100644 index 06bdcb35..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) - ┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 8366d36a..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 79ba7f5a..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 3ff9cd5c..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 0a702637..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 0216a150..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index 981e8b8e..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index 6528840b..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index f43ccdf5..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index 8b1c8aba..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index 15909e16..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 3eca49f9..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index e1c15e6c..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory/60_0family_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/60_0family_empty.md b/tests/results/test_namespace_mandatory/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/60_0family_empty.sh b/tests/results/test_namespace_mandatory/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md deleted file mode 100644 index f783845b..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a family +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory/60_0family_hidden.md b/tests/results/test_namespace_mandatory/60_0family_hidden.md deleted file mode 100644 index fc65840d..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a variable: null diff --git a/tests/results/test_namespace_mandatory/60_0family_hidden.sh b/tests/results/test_namespace_mandatory/60_0family_hidden.sh deleted file mode 100644 index eaf977f7..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 a variable: null diff --git a/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md b/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md deleted file mode 100644 index df40ada6..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_mode.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory/60_0family_mode.md b/tests/results/test_namespace_mandatory/60_0family_mode.md deleted file mode 100644 index c75b0765..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_mode.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory/60_0family_mode.sh b/tests/results/test_namespace_mandatory/60_0family_mode.sh deleted file mode 100644 index 0f32dc94..00000000 --- a/tests/results/test_namespace_mandatory/60_0family_mode.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index 5b1efe4d..00000000 --- a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.md b/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.md deleted file mode 100644 index 42d8df80..00000000 --- a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.sh deleted file mode 100644 index 7b3a3fa4..00000000 --- a/tests/results/test_namespace_mandatory/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index d217053c..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 14293c23..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 513562d1..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index da38c2cb..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index bf67e7b0..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a73b640b..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 457f4cf0..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index 8626342b..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index d1912bca..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 0e15a617..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 9a306743..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index 367604d7..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index b046102c..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.md deleted file mode 100644 index f123acc0..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4846c161..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index bd8bd966..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index 8b811f33..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index b25f118c..00000000 --- a/tests/results/test_namespace_mandatory/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md deleted file mode 100644 index a17f1c24..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.md deleted file mode 100644 index 288921c7..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.sh deleted file mode 100644 index d7161592..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md deleted file mode 100644 index 832d9038..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.md deleted file mode 100644 index 784ffa53..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.sh deleted file mode 100644 index 80a96b69..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc2_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index b24fdce9..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.md deleted file mode 100644 index a4cfbfee..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 80b27cbd..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index b19036b2..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 11d8dbaa..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 0ff15815..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 85400d1b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index d4d2b552..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 859744d4..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index b5d6d80a..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: [+ {} +] - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index 6dc0535a..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: {} - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index 55dd8df3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 dynval1: {} - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md deleted file mode 100644 index 0d3d89f4..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.md deleted file mode 100644 index 150cb650..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh deleted file mode 100644 index 97bed2b8..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md deleted file mode 100644 index ecdca7b3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.md deleted file mode 100644 index 186a8e2d..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh deleted file mode 100644 index 1937ad8e..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┗━━ val1 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md deleted file mode 100644 index 614f2aa2..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.md deleted file mode 100644 index 93006110..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh deleted file mode 100644 index ee2d5b37..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md deleted file mode 100644 index 28928bd1..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: [+ a value +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: [+ a value +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.md deleted file mode 100644 index 2edfebeb..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: a value - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: a value - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.sh deleted file mode 100644 index f9d88e26..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: a value - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: a value - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md deleted file mode 100644 index e5907dab..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: [+ true +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: [+ true +] - - :notebook: A variable calculated: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md deleted file mode 100644 index d5cbc979..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: true - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: true - - :notebook: A variable calculated: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh deleted file mode 100644 index 4b366410..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: true - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: true - ┗━━ 📓 A variable calculated: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md deleted file mode 100644 index 56e5fb99..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: - - [+ a value +] - - [+ a second value +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: - - [+ a value +] - - [+ a second value +] - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md deleted file mode 100644 index 32a4ac61..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: - - a value - - a second value - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: - - a value - - a second value - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh deleted file mode 100644 index d33040e2..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: - ┃  ┣━━ a value - ┃  ┗━━ a second value - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: - ┃  ┣━━ a value - ┃  ┗━━ a second value - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ a value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ a second value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 4653c375..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index acc506d8..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index 731e7dfc..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index 7b10d58b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 5131cf37..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index e294bd6c..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 576afbec..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index 41e2ddef..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index f587371c..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic famify for val2 -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index a69eb639..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 58e5de03..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index f47218ae..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index 3619af7b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: [+ a dynamic family +] - - :notebook: [+ a variable +]: [+ null +] - - :open_file_folder: [+ a family +] - - :notebook: [+ a new variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index a18372de..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable: null - - :open_file_folder: a family - - :notebook: a new variable: null diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index 494c86b4..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable: null -  ┗━━ 📂 a family -   ┗━━ 📓 a new variable: null diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md deleted file mode 100644 index 9c1b208c..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.md deleted file mode 100644 index b48f8a48..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.sh deleted file mode 100644 index 66f6f496..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md deleted file mode 100644 index 767a8fbc..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ /dev/null @@ -1,33 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - [- val3 -] ← loaded from rougail-test - - [- val4 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.md deleted file mode 100644 index 534bac6b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.md +++ /dev/null @@ -1,34 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - val3 ← loaded from rougail-test - - val4 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.sh deleted file mode 100644 index 5ec34da1..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_unknown_suffix_empty.sh +++ /dev/null @@ -1,31 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┣━━ val2 ◀ loaded from rougail-test - ┃ ┣━━ val3 ◀ loaded from rougail-test - ┃ ┗━━ val4 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val3) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md deleted file mode 100644 index d1063872..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.md deleted file mode 100644 index 892a3349..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.sh deleted file mode 100644 index 91541796..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md deleted file mode 100644 index 6b3a9c36..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.md deleted file mode 100644 index b87e5134..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.sh deleted file mode 100644 index 242060a3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside2_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_1_0.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md deleted file mode 100644 index d38c3fbf..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md deleted file mode 100644 index ebe7fe59..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh deleted file mode 100644 index 9d75028a..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md deleted file mode 100644 index 9668b2c2..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md deleted file mode 100644 index 9b987a89..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh deleted file mode 100644 index 1489f2ce..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index 1cf48b29..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 8314bdf3..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 411a0f48..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 2b591268..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index 504f8767..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index 606d6575..00000000 --- a/tests/results/test_namespace_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 asuffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md deleted file mode 100644 index 1f4a8f70..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.md deleted file mode 100644 index 14a88795..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.sh deleted file mode 100644 index 83183863..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md deleted file mode 100644 index e9710619..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.md deleted file mode 100644 index bb9844f9..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.sh deleted file mode 100644 index 73056139..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_inside_empty.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index 97dc6347..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.md deleted file mode 100644 index dbb025b8..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.sh deleted file mode 100644 index ddcef224..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 5921e7e9..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index f67f8984..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index 25c908c6..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md deleted file mode 100644 index 2b83e962..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md deleted file mode 100644 index a2957910..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh deleted file mode 100644 index ec82fc67..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📂 A dynamic family - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 A dynamic family - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┣━━ 📂 A dynamic family -  ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 A dynamic family -   ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md deleted file mode 100644 index 92eb1e62..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.md deleted file mode 100644 index 11712f71..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.sh deleted file mode 100644 index 10be0008..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md deleted file mode 100644 index c318ac7a..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ /dev/null @@ -1,45 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.md deleted file mode 100644 index 4efab94e..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.md +++ /dev/null @@ -1,46 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh deleted file mode 100644 index e8934279..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh +++ /dev/null @@ -1,43 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string1) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string2) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string3) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string1) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string2) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string3) diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_mandatory/60_6family_dynamic_suffix_auto_multi2.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md deleted file mode 100644 index 02e25398..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic.md deleted file mode 100644 index 5a1a6f63..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic.sh b/tests/results/test_namespace_mandatory/60_9extra_dynamic.sh deleted file mode 100644 index 60476413..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: -┃  ┗━━ a ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 extra - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md deleted file mode 100644 index f8854db9..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.md b/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.md deleted file mode 100644 index 175907c3..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.sh deleted file mode 100644 index bf02dc7b..00000000 --- a/tests/results/test_namespace_mandatory/60_9extra_dynamic_extra.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📂 général -┃  ┗━━ 📓 No change: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃   ┣━━ string2 ◀ loaded from rougail-test -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 extra - ┣━━ 📓 a variable: - ┃ ┗━━ a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 540a6f98..00000000 --- a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.md b/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.md deleted file mode 100644 index 92fd1e0a..00000000 --- a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 4f343e74..00000000 --- a/tests/results/test_namespace_mandatory/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index be1f1708..00000000 --- a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.md b/tests/results/test_namespace_mandatory/68_0family_leadership_mode.md deleted file mode 100644 index 821b19dc..00000000 --- a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.sh b/tests/results/test_namespace_mandatory/68_0family_leadership_mode.sh deleted file mode 100644 index 211ebe33..00000000 --- a/tests/results/test_namespace_mandatory/68_0family_leadership_mode.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 A leader -   ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_0empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0empty.md b/tests/results/test_namespace_mandatory_secrets/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0empty.sh b/tests/results/test_namespace_mandatory_secrets/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.sh b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.md b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.sh b/tests/results/test_namespace_mandatory_secrets/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.md b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_0version_underscore.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md deleted file mode 100644 index 652feeaf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.md b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.md deleted file mode 100644 index de86a2d3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh deleted file mode 100644 index a4659e16..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_1empty_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md deleted file mode 100644 index 6383c35b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.md deleted file mode 100644 index 591772c6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh deleted file mode 100644 index dc926c91..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index e5a74d04..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.md deleted file mode 100644 index 563a935c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh deleted file mode 100644 index 2a56e535..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 2e6e8765..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ leadership +] - - :open_file_folder: [+ a first variable +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: [+ a first variable +]: [+ a_value +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.md deleted file mode 100644 index 87d9614e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a first variable - - :notebook: a first variable: a_value - - :notebook: a first variable: a_value - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) 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 deleted file mode 100644 index 0c9a5a8c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leadership - ┃ ┗━━ 📂 a first variable - ┃  ┣━━ 📓 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/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index ae8bfa44..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.md deleted file mode 100644 index 04f42da8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.sh deleted file mode 100644 index b344efd6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 1f9ae4f2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 16ee157b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 8dc7e22b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md deleted file mode 100644 index 09326a92..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.md b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.md deleted file mode 100644 index aff96c10..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh deleted file mode 100644 index 4370e383..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_4load_subfolder.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md deleted file mode 100644 index 46210fda..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.md b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.md deleted file mode 100644 index b18a4be1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh b/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh deleted file mode 100644 index e353a6f5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_5load_notype.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md deleted file mode 100644 index 84cf8921..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean.md deleted file mode 100644 index 19c2fa36..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh b/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh deleted file mode 100644 index d220f06b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 4ac9370f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.md b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.md deleted file mode 100644 index 1dc28bc5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh deleted file mode 100644 index 964ce027..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md deleted file mode 100644 index 383509ba..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test - - :notebook: the third variable: [- a -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice.md b/tests/results/test_namespace_mandatory_secrets/00_6choice.md deleted file mode 100644 index 5c045689..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test - - :notebook: the third variable: a ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice.sh deleted file mode 100644 index 1c096407..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┣━━ 📓 the second variable: a ◀ loaded from rougail-test - ┣━━ 📓 the third variable: a ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md deleted file mode 100644 index 06f5eaf5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_link.md deleted file mode 100644 index bf16009c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_link.sh deleted file mode 100644 index 3b168a96..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md deleted file mode 100644 index 7394ca55..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.md deleted file mode 100644 index 987b9554..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh deleted file mode 100644 index eddb3823..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 45e3ebdd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.md deleted file mode 100644 index 3266f37f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.sh deleted file mode 100644 index f2b547f9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 91b79b22..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.md b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.md deleted file mode 100644 index 1fd50789..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.sh b/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.sh deleted file mode 100644 index 7b36ca02..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6choice_variable_link2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 family -  ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md deleted file mode 100644 index 828cfcba..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6custom.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6custom.md b/tests/results/test_namespace_mandatory_secrets/00_6custom.md deleted file mode 100644 index f96a15ad..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6custom.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6custom.sh b/tests/results/test_namespace_mandatory_secrets/00_6custom.sh deleted file mode 100644 index 3cfc944a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6custom.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh b/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.md b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6domainname_params.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md deleted file mode 100644 index 45722b34..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6float.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6float.md b/tests/results/test_namespace_mandatory_secrets/00_6float.md deleted file mode 100644 index fa113376..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6float.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6float.sh b/tests/results/test_namespace_mandatory_secrets/00_6float.sh deleted file mode 100644 index 81ba4f10..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6float.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6integer.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6integer.md b/tests/results/test_namespace_mandatory_secrets/00_6integer.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6integer.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6integer.sh b/tests/results/test_namespace_mandatory_secrets/00_6integer.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6integer.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md deleted file mode 100644 index 6c4c50b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6ip.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6ip.md b/tests/results/test_namespace_mandatory_secrets/00_6ip.md deleted file mode 100644 index 75aec391..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6ip.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6ip.sh b/tests/results/test_namespace_mandatory_secrets/00_6ip.sh deleted file mode 100644 index 6b4b4006..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6ip.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) - ┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) - ┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md deleted file mode 100644 index bce02121..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6network.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6network.md b/tests/results/test_namespace_mandatory_secrets/00_6network.md deleted file mode 100644 index 51eb7eec..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6network.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6network.sh b/tests/results/test_namespace_mandatory_secrets/00_6network.sh deleted file mode 100644 index bd7c3635..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6network.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) - ┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) - ┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6number.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6number.md b/tests/results/test_namespace_mandatory_secrets/00_6number.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6number.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6number.sh b/tests/results/test_namespace_mandatory_secrets/00_6number.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6number.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md deleted file mode 100644 index 657acee9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6port.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: [- 80 -] ← loaded from rougail-test - - :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6port.md b/tests/results/test_namespace_mandatory_secrets/00_6port.md deleted file mode 100644 index 672ca899..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6port.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: 80 ← loaded from rougail-test - - :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6port.sh b/tests/results/test_namespace_mandatory_secrets/00_6port.sh deleted file mode 100644 index 51381431..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6port.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test - ┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md deleted file mode 100644 index 9e350911..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp.md deleted file mode 100644 index 28255257..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh b/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh deleted file mode 100644 index 391f3ff0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md deleted file mode 100644 index 1fcdb643..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.md b/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.md deleted file mode 100644 index e87428e8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.sh b/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.sh deleted file mode 100644 index ace68e72..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6regexp_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) - ┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md deleted file mode 100644 index d66294e8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- ********** -] ← loaded from rougail-test - - :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret.md b/tests/results/test_namespace_mandatory_secrets/00_6secret.md deleted file mode 100644 index 1d0ed393..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: ********** ← loaded from rougail-test - - :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret.sh b/tests/results/test_namespace_mandatory_secrets/00_6secret.sh deleted file mode 100644 index 7157f268..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test - ┗━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md deleted file mode 100644 index 940b5ca4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- ********** -] ← loaded from rougail-test - - :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) - - :notebook: the third variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.md b/tests/results/test_namespace_mandatory_secrets/00_6secret_param.md deleted file mode 100644 index f05c24f6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: ********** ← loaded from rougail-test - - :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) - - :notebook: the third variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.sh b/tests/results/test_namespace_mandatory_secrets/00_6secret_param.sh deleted file mode 100644 index 29461a36..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6secret_param.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test - ┣━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) - ┗━━ 📓 the third variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md deleted file mode 100644 index feba490f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6string.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test - - :notebook: the third variable: [- string1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6string.md b/tests/results/test_namespace_mandatory_secrets/00_6string.md deleted file mode 100644 index 92a67213..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6string.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test - - :notebook: the third variable: string1 ← loaded from rougail-test - - :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_6string.sh b/tests/results/test_namespace_mandatory_secrets/00_6string.sh deleted file mode 100644 index 5ea4d472..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_6string.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md deleted file mode 100644 index 15acb0a9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.md b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.md deleted file mode 100644 index 05d4413c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh deleted file mode 100644 index fd032caa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7choice_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help.md b/tests/results/test_namespace_mandatory_secrets/00_7help.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help.sh b/tests/results/test_namespace_mandatory_secrets/00_7help.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.md b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md deleted file mode 100644 index 1446148f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : [- string1 -] ← loaded from rougail-test - - :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.md b/tests/results/test_namespace_mandatory_secrets/00_7help_sup.md deleted file mode 100644 index 39e65110..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : string1 ← loaded from rougail-test - - :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.sh b/tests/results/test_namespace_mandatory_secrets/00_7help_sup.sh deleted file mode 100644 index 6e9a8afe..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7help_sup.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first : string1 ◀ loaded from rougail-test - ┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md deleted file mode 100644 index 368efedf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.md deleted file mode 100644 index a4c3f7ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh deleted file mode 100644 index b52940bd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 31b6351a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.md deleted file mode 100644 index 803a52dc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh deleted file mode 100644 index dc59ccd3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 96f5911c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.md b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.md deleted file mode 100644 index fd3e6aea..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh deleted file mode 100644 index d33d0502..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_doublequote3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md deleted file mode 100644 index ff15f571..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.md b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.md deleted file mode 100644 index 5e710274..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh b/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh deleted file mode 100644 index 647669b2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_7value_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.sh b/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.md b/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.sh b/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8calculation_param_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md deleted file mode 100644 index e0555351..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8test.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- test -] ← loaded from rougail-test - - :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- test1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_8test.md b/tests/results/test_namespace_mandatory_secrets/00_8test.md deleted file mode 100644 index 8a0190f0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8test.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: test ← loaded from rougail-test - - :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: test1 ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_8test.sh b/tests/results/test_namespace_mandatory_secrets/00_8test.sh deleted file mode 100644 index 3aa8ce13..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_8test.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: test ◀ loaded from rougail-test - ┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the sixth variable: -  ┣━━ test1 ◀ loaded from rougail-test -  ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index 78961ce9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.md deleted file mode 100644 index 992d57f8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh deleted file mode 100644 index 0d0c89ed..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test -  ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md deleted file mode 100644 index 9eef33ed..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.md b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.md deleted file mode 100644 index f1f1b93d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh deleted file mode 100644 index 01ed0aac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9choice_variables.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md deleted file mode 100644 index 79eca35c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.md deleted file mode 100644 index 12e54e33..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh deleted file mode 100644 index 6ba63ff2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index bda2cca8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 55a02d30..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 581a9b67..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index 9b88f57c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.md deleted file mode 100644 index efea5ac0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh deleted file mode 100644 index faba17e7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 95ebc9c2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.md deleted file mode 100644 index 2e320fbf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh deleted file mode 100644 index df02aa45..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index f204422c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.md b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.md deleted file mode 100644 index cd26f538..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh deleted file mode 100644 index 2089d1b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.md b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.md b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_number.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_number.md b/tests/results/test_namespace_mandatory_secrets/00_9default_number.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_number.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9default_number.sh b/tests/results/test_namespace_mandatory_secrets/00_9default_number.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9default_number.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md deleted file mode 100644 index aeac8ccc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra.md b/tests/results/test_namespace_mandatory_secrets/00_9extra.md deleted file mode 100644 index 0cae1eaf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra.sh b/tests/results/test_namespace_mandatory_secrets/00_9extra.sh deleted file mode 100644 index 47bb8105..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ rougail) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md deleted file mode 100644 index 1572b468..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.md deleted file mode 100644 index e4c7dead..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh deleted file mode 100644 index 68331fce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_calculation.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📂 extra - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md deleted file mode 100644 index 8fb88762..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.md b/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.md deleted file mode 100644 index 81751d7f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.sh b/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.sh deleted file mode 100644 index cc1f0f13..00000000 --- a/tests/results/test_namespace_mandatory_secrets/00_9extra_ouside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value in extra) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md deleted file mode 100644 index f6b87dbe..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.md b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.md deleted file mode 100644 index 284d7063..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh deleted file mode 100644 index e45514be..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6boolean_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the sixth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the seventh variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the eighth variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md deleted file mode 100644 index f8aac52f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.md b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.md deleted file mode 100644 index 6cca5a48..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh deleted file mode 100644 index 18b7d908..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6custom_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first custom variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second custom variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md deleted file mode 100644 index d8759ea9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.md b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.md deleted file mode 100644 index 64a787de..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh deleted file mode 100644 index 04abfcfb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6float_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -  ┣━━ 2.2 ◀ loaded from rougail-test -  ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md deleted file mode 100644 index 46d9794a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.md deleted file mode 100644 index e6846109..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.sh deleted file mode 100644 index ed6b4eb1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 6e862990..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.md b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.md deleted file mode 100644 index 69830973..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.sh deleted file mode 100644 index 52ca76a0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the first variable: -  ┣━━ 1 ◀ loaded from rougail-test -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md deleted file mode 100644 index ca44d251..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.md b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.md deleted file mode 100644 index a20a6db9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh b/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh deleted file mode 100644 index 85d95838..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_empty.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ null) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md deleted file mode 100644 index 28cbdcb4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.md deleted file mode 100644 index 9e7a4720..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh deleted file mode 100644 index d36888f6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md deleted file mode 100644 index 9c4a3f4d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.md b/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.md deleted file mode 100644 index 47e7caa2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.sh b/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.sh deleted file mode 100644 index 0341d171..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_6string_multi_length.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) - ┗━━ 📓 the variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index b06b1980..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.md deleted file mode 100644 index d9705693..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh deleted file mode 100644 index 751c749d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index a1d0fea1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.md deleted file mode 100644 index b46dd95d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh deleted file mode 100644 index 4ee8bc93..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 5a371283..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.md b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.md deleted file mode 100644 index 42b0526a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh deleted file mode 100644 index 7a90e727..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_7value_multi_quote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 603a7cc3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.md b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.md deleted file mode 100644 index c17e123d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh deleted file mode 100644 index 2885d4da..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_8calculation_information_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index 58b87f90..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.md deleted file mode 100644 index 885fb8fe..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh deleted file mode 100644 index ddc32137..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index 0be08c2e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.md b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.md deleted file mode 100644 index 7c9aec52..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.sh b/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.sh deleted file mode 100644 index 47508134..00000000 --- a/tests/results/test_namespace_mandatory_secrets/01_9choice_variable_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_mandatory_secrets/02_0tags.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/02_0tags.md b/tests/results/test_namespace_mandatory_secrets/02_0tags.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_mandatory_secrets/02_0tags.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/02_0tags.sh b/tests/results/test_namespace_mandatory_secrets/02_0tags.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/02_0tags.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md deleted file mode 100644 index 5ab9ef91..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param.md deleted file mode 100644 index b3de1dac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh b/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh deleted file mode 100644 index 8b8121ad..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md deleted file mode 100644 index 71377428..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.md b/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.md deleted file mode 100644 index 3b487a4e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.sh b/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.sh deleted file mode 100644 index cf4e0fc9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_0type_param_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md deleted file mode 100644 index 589647d6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.md deleted file mode 100644 index 8e0d9204..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh deleted file mode 100644 index fbc3cceb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index cda0de5b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- no -] diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.md deleted file mode 100644 index 9058d89c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh deleted file mode 100644 index 5c00df9e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index ed6a29b9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- yes -] diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index fdee8486..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 01da0468..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index 1908e439..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ autosave variable +]: [- yes -] diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.md b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.md deleted file mode 100644 index 6bf614eb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: autosave variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh deleted file mode 100644 index 4c0156d2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1auto_save_and_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ Unmodifiable variable │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 autosave variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 3a5dd936..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ value +] - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.md deleted file mode 100644 index 23c09bdd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: value - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 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 deleted file mode 100644 index c6df6264..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: value - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index 756940d2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ value +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7da4ebc8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: value - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 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 deleted file mode 100644 index 4dd8e22e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 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/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index 03d2ebce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: [+ a second variable +]: [+ string1 +] - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.md deleted file mode 100644 index 6ac54ab3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 - - :notebook: a third variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index a4887d6d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 53efa563..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.md b/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.md deleted file mode 100644 index 0e3f2b95..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 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 deleted file mode 100644 index 2e13c950..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md deleted file mode 100644 index b195f1ac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.md deleted file mode 100644 index 5cf4f819..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh deleted file mode 100644 index 4e6546b4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 41155c8d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.md deleted file mode 100644 index 19e7c258..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.sh deleted file mode 100644 index 634fa9f2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_default.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md deleted file mode 100644 index 57c6d9fa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.md deleted file mode 100644 index 3f45fb25..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.sh deleted file mode 100644 index 297c46fe..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_multi.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index a563a796..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: [+ a first variable +]: [+ null +] - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.md deleted file mode 100644 index 22f79056..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: null - - :notebook: a second variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index 7fd5c7b7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: null - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index 5fe9cb95..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: [+ a first variable +]: [+ null +] - - :notebook: [+ a second variable +]: [+ null +] - - :notebook: [+ a forth variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 179db4c5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a first variable: null - - :notebook: a second variable: null - - :notebook: a forth variable: null 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 deleted file mode 100644 index c26a388c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 - ┣━━ 📓 a second variable: null - ┗━━ 📓 a forth variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index ec72b58f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.md deleted file mode 100644 index 6781fea0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 24ec7e5a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 381729f5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.md deleted file mode 100644 index 009536b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 42b6b592..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 28774a6b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a condition +]: [+ false +] - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.md deleted file mode 100644 index 0aee8294..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: false - - :notebook: a variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index ec7d8397..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: false - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e45b5280..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a condition +]: [+ true +] diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.md deleted file mode 100644 index 4e9a4243..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true 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 deleted file mode 100644 index 9c4d0606..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable8.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md deleted file mode 100644 index 0cd62c2f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.md deleted file mode 100644 index 64bdf8cf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh deleted file mode 100644 index 8a205788..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md deleted file mode 100644 index 9dee9bb6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: [+ a first variable +]: [+ string1 +] - - :notebook: [+ a second variable +]: [+ string1 +] diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.md deleted file mode 100644 index ed338f93..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 - - :notebook: a second variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh deleted file mode 100644 index a116ca16..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 - ┗━━ 📓 a second variable: string1 diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5hidden_calculation_default_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md deleted file mode 100644 index a8452724..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators.md b/tests/results/test_namespace_mandatory_secrets/04_5validators.md deleted file mode 100644 index 19b3aa83..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators.sh deleted file mode 100644 index efea506a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md deleted file mode 100644 index 9b068281..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.md deleted file mode 100644 index 72472698..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh deleted file mode 100644 index 27df2808..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_differ.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) - ┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md deleted file mode 100644 index d1d91485..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.md deleted file mode 100644 index d4007c71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh deleted file mode 100644 index a4f78070..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md deleted file mode 100644 index 287ee192..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.md deleted file mode 100644 index 9b5b4020..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh deleted file mode 100644 index 0ee860e8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test (⏳ no) -  ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md deleted file mode 100644 index c405e423..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.md deleted file mode 100644 index a4131fe4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.sh deleted file mode 100644 index 43878be7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_multi3.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ (⏳ 1) -  ┗━━ (⏳ 2) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.md b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.sh b/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_mandatory_secrets/04_5validators_warnings_all.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_not_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.md b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/05_0multi_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md deleted file mode 100644 index d6c2e386..00000000 --- a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- no -] diff --git a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.md b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.md deleted file mode 100644 index 70329de2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh deleted file mode 100644 index 49f35116..00000000 --- a/tests/results/test_namespace_mandatory_secrets/12_1auto_save_expert.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md deleted file mode 100644 index 10a88bd3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.md b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.md deleted file mode 100644 index 4b50aa75..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh deleted file mode 100644 index 37707cfb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_0redefine_description.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.md b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.md b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_mandatory_secrets/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index dd65182a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.md b/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.md deleted file mode 100644 index 7b7f9ecd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.sh b/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.sh deleted file mode 100644 index 614cad00..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md deleted file mode 100644 index d1f1ccf4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.md deleted file mode 100644 index 178ce451..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh deleted file mode 100644 index 23becc10..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_nonexists.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md deleted file mode 100644 index f09d0633..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a first variable +]: [+ yes +] diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.md b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.md deleted file mode 100644 index c7486fd7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh deleted file mode 100644 index 470d2baa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5exists_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: yes diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md deleted file mode 100644 index f759e9a7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.md deleted file mode 100644 index a7111393..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh deleted file mode 100644 index f07415c6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_choice.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md deleted file mode 100644 index ca57cd14..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.md deleted file mode 100644 index 57f96de9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh deleted file mode 100644 index 3a5a9f72..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 new description -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md deleted file mode 100644 index 9f143013..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.md deleted file mode 100644 index bb413ada..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh deleted file mode 100644 index d76873b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md deleted file mode 100644 index 4a8465c1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ a variable +]: [+ no +] diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.md deleted file mode 100644 index 355256ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh deleted file mode 100644 index ffcc8564..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md deleted file mode 100644 index 7a451ad4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.md b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.md deleted file mode 100644 index 9b3b41d4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh deleted file mode 100644 index f95d5c96..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_5test_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md deleted file mode 100644 index b257a746..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.md b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.md deleted file mode 100644 index 3680b158..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh deleted file mode 100644 index 95081cf8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6choice_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_family.md b/tests/results/test_namespace_mandatory_secrets/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_family.sh b/tests/results/test_namespace_mandatory_secrets/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f308e3a6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.md b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.md deleted file mode 100644 index ca4feef3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh deleted file mode 100644 index 716e4666..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16_6exists_redefine_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 new description - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a second family -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md deleted file mode 100644 index 69e26651..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16exists_exists.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16exists_exists.md b/tests/results/test_namespace_mandatory_secrets/16exists_exists.md deleted file mode 100644 index 8e7347ed..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16exists_exists.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh b/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh deleted file mode 100644 index e572c5de..00000000 --- a/tests/results/test_namespace_mandatory_secrets/16exists_exists.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.md b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/17_5redefine_leadership.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/20_0empty_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0empty_family.md b/tests/results/test_namespace_mandatory_secrets/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0empty_family.sh b/tests/results/test_namespace_mandatory_secrets/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md deleted file mode 100644 index fcc4d7fe..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0family_append.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_append.md b/tests/results/test_namespace_mandatory_secrets/20_0family_append.md deleted file mode 100644 index 05dd4c7c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0family_append.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh b/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh deleted file mode 100644 index 4668f151..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0family_append.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A family -  ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.md b/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_namespace_mandatory_secrets/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_basic.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_expert.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md deleted file mode 100644 index ee5c84a0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.md b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.md deleted file mode 100644 index d55f9aff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh deleted file mode 100644 index c245712f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0multi_family_order.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a sub family -  ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 23cf1572..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.md b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.md deleted file mode 100644 index bd753eb0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh deleted file mode 100644 index ff6184ad..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.md b/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_mandatory_secrets/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index 9bf0d70c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.md deleted file mode 100644 index 93b860df..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.sh deleted file mode 100644 index 1905b9c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┣━━ 📓 dynamic: -  ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 56cb8522..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.md b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.md deleted file mode 100644 index 0073c1d5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.sh b/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.sh deleted file mode 100644 index 6f7622e7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md deleted file mode 100644 index 7818a4f7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_7help_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_7help_family.md b/tests/results/test_namespace_mandatory_secrets/20_7help_family.md deleted file mode 100644 index 4351668d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_7help_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_7help_family.sh b/tests/results/test_namespace_mandatory_secrets/20_7help_family.sh deleted file mode 100644 index f302d635..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_7help_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 the first family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 the second family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md deleted file mode 100644 index 130fb755..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.md b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.md deleted file mode 100644 index 4d6baa86..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh deleted file mode 100644 index ae65e2c0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/20_9default_information_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md deleted file mode 100644 index fcb3871a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.md deleted file mode 100644 index a86a61c0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh deleted file mode 100644 index da5651af..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md deleted file mode 100644 index 8c36dd68..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.md deleted file mode 100644 index f9bb12d8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh deleted file mode 100644 index a5da6e15..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_boolean.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📂 a family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 18e5d369..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f971677c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 709bdc74..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 2b57a2b2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: [+ possibly hidden family +] - - :open_file_folder: [+ a subfamily +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index d8973e41..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: null 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 deleted file mode 100644 index ece62f85..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md deleted file mode 100644 index ad196a2c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.md deleted file mode 100644 index 58e5bcfb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: 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 deleted file mode 100644 index f6e93aca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_condition_with_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ 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 diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 892a6f62..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index 65358fb2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 3b98238c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 a subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index ea03d0e8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.md deleted file mode 100644 index 4b9ada76..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index ccb87621..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index c9a709ab..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.md b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.md deleted file mode 100644 index 95ce84c2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh deleted file mode 100644 index a44a9537..00000000 --- a/tests/results/test_namespace_mandatory_secrets/24_7validators_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test -  ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.md b/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_mandatory_secrets/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_diff_name.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 951efe61..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.md deleted file mode 100644 index 3e4359a0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index c1a9e421..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md deleted file mode 100644 index 6260abf7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.md deleted file mode 100644 index 33e8c616..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh deleted file mode 100644 index 4798d509..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md deleted file mode 100644 index 5601ba9f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md deleted file mode 100644 index a464bc15..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh deleted file mode 100644 index e56c937e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 22902558..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.md deleted file mode 100644 index be502540..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh deleted file mode 100644 index d0145bc3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 155ae333..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.md deleted file mode 100644 index 4b9c3a59..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.sh deleted file mode 100644 index 9232a71b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 49a94371..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.md deleted file mode 100644 index 7bb2ca00..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh deleted file mode 100644 index caf94ed4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 general - ┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📂 general1 -  ┗━━ 📂 leader -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 leader -    ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md deleted file mode 100644 index 5d9de3fb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.md b/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.md deleted file mode 100644 index 8d0e32b4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.sh b/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.sh deleted file mode 100644 index c8acc755..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_0leadership_reduce.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -   ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index dee2a6d3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.md b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.md deleted file mode 100644 index 814a7898..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh deleted file mode 100644 index 92836c84..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_1leadership_append_follower.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md deleted file mode 100644 index ffb5fec5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.md deleted file mode 100644 index cbdf8529..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh deleted file mode 100644 index dc0c00f2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_calculation_param_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md deleted file mode 100644 index 7dd2a13a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: [- string1 -] ← loaded from rougail-test - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: [- string2 -] ← loaded from rougail-test - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a first follower: [- string3 -] ← loaded from rougail-test - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.md b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.md deleted file mode 100644 index 77555235..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: string1 ← loaded from rougail-test - - :notebook: a second follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: string2 ← loaded from rougail-test - - :notebook: a second follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a first follower: string3 ← loaded from rougail-test - - :notebook: a second follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh deleted file mode 100644 index 5a551251..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_2leadership_leader_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ 📓 a first follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┣━━ 📓 a first follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a first follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md deleted file mode 100644 index 2fd2afac..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.md deleted file mode 100644 index 58513928..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh deleted file mode 100644 index e11ff294..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 a first multi variable: - ┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) - ┃ ┗━━ (⏳ false) - ┗━━ 📓 a second multi variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md deleted file mode 100644 index e5a29bfc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: [- true -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.md deleted file mode 100644 index eb03c244..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: true ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh deleted file mode 100644 index 10bcd049..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_boolean_return_none.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a second variable: true ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md deleted file mode 100644 index fe13f94e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.md deleted file mode 100644 index b5e804c8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh deleted file mode 100644 index 82566a24..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_integer.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 first integer variable: 1 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📓 second integer variable: 1 ◀ loaded from rougail-test (⏳ 4) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index dc2ee9ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.md deleted file mode 100644 index 61402ea8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh deleted file mode 100644 index 2fc25998..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index f5500bde..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e04f7b41..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 00792e71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a family -  ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index 1e731359..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 75031777..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index a75ed8c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 first family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 second family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index af861c6a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index 86ac86a3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index 6576e5bc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 430a2447..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index 6f1d212e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 6dbe6cff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index e7cde94e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index bb85f044..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 239aef89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 2e14eb73..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test - - :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index 10272605..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test - - :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index a4b48bd9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leader - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 leader - ┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test - ┗━━ 📓 variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 78e937f9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 61a6efb1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 65296704..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index b4b858ff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index 7ce44ede..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index ae080aaa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 900df4e4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.md deleted file mode 100644 index 3e994562..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.sh deleted file mode 100644 index a9cfe4d2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a calculated variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 950cd91e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 0f41960b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,29 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index 153ef6b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,26 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 36879bba..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index b92a2b55..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 6526a49a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md deleted file mode 100644 index 47b922dd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.md b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.md deleted file mode 100644 index 624251f4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh deleted file mode 100644 index 05a60f10..00000000 --- a/tests/results/test_namespace_mandatory_secrets/41_0choice_leader.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 The leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.md b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_0leadership_leader_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index 566d67b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a leadership +]: [+ [] +] diff --git a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.md deleted file mode 100644 index 31e1f731..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index 9517af71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_1leadership_append_hidden_follower.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership: [] diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md deleted file mode 100644 index 7b5e2fcd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.md deleted file mode 100644 index f3c31f4a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh deleted file mode 100644 index 7e983835..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index c94e7f8e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index 788a4221..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index ed8c275a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.md b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 164950d9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index 10f5dc08..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index 1e806099..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index 23d88b47..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index bd555e36..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index 55f68461..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md deleted file mode 100644 index ece30473..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.md deleted file mode 100644 index 8f91e324..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh deleted file mode 100644 index 7d40319d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/44_9calculated_default_leadership_leader.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leader -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md deleted file mode 100644 index b6381c78..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.md deleted file mode 100644 index 0bff1880..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh deleted file mode 100644 index 7ce61e50..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md deleted file mode 100644 index 61798b1c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.md deleted file mode 100644 index 812ccfa3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh deleted file mode 100644 index 83a49c2e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md deleted file mode 100644 index 0c649ccb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.md deleted file mode 100644 index 7453d466..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh deleted file mode 100644 index 3aaa13d2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md deleted file mode 100644 index 10cab53f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md deleted file mode 100644 index ad92b1f4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh deleted file mode 100644 index ef631cf8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index 0aeb0d2b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.md deleted file mode 100644 index 56f388ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh deleted file mode 100644 index 6d7c1315..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index 6ba3e9a5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index 2a9c0342..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index debc28e9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md deleted file mode 100644 index 9d322e4a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md deleted file mode 100644 index d0aab92f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh deleted file mode 100644 index 833a7c15..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test - ┃ ┗━━ 2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md deleted file mode 100644 index 1d7565d1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.md deleted file mode 100644 index 622ee06e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - 2 ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh deleted file mode 100644 index 3c9f31d0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_jinja_number.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 1) - ┃ ┗━━ 2 ◀ loaded from rougail-test (⏳ 2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index 0d314879..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.md deleted file mode 100644 index b6183bcc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh deleted file mode 100644 index 12e127fa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index 91335f10..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 2b3db0c4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index f165eac7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index e377f81f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: [+ A suffix variable +]: - - [+ val1 +] - - [+ val2 +] - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 40a55b32..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 - - val2 - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test 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 deleted file mode 100644 index d435b25f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 - ┃ ┗━━ val2 - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index f1cdce30..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.md deleted file mode 100644 index 5d503845..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh deleted file mode 100644 index f591169c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_static.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 221c10b1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.md deleted file mode 100644 index 31eb49da..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.sh deleted file mode 100644 index 06bdcb35..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) - ┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 8366d36a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 79ba7f5a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 3ff9cd5c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 0a702637..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 0216a150..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index 981e8b8e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index 6528840b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index f43ccdf5..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index 8b1c8aba..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index 15909e16..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 3eca49f9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index e1c15e6c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_empty.md b/tests/results/test_namespace_mandatory_secrets/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md deleted file mode 100644 index f783845b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: [+ a family +] - - :notebook: [+ a variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.md b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.md deleted file mode 100644 index fc65840d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh deleted file mode 100644 index eaf977f7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ──────────────╮ -│ Variable Default value │ -│ Unmodifiable variable │ -╰─────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 a variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md deleted file mode 100644 index df40ada6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.md b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.md deleted file mode 100644 index c75b0765..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh b/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh deleted file mode 100644 index 0f32dc94..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_0family_mode.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index 5b1efe4d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.md b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.md deleted file mode 100644 index 42d8df80..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh deleted file mode 100644 index 7b3a3fa4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index d217053c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 14293c23..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 513562d1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index da38c2cb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index bf67e7b0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a73b640b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 457f4cf0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index 8626342b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index d1912bca..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 0e15a617..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 9a306743..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index 367604d7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index b046102c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.md deleted file mode 100644 index f123acc0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4846c161..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index bd8bd966..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index 8b811f33..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index b25f118c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md deleted file mode 100644 index a17f1c24..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.md deleted file mode 100644 index 288921c7..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh deleted file mode 100644 index d7161592..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md deleted file mode 100644 index 832d9038..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.md deleted file mode 100644 index 784ffa53..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh deleted file mode 100644 index 80a96b69..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc2_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index b24fdce9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.md deleted file mode 100644 index a4cfbfee..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 80b27cbd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index b19036b2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 11d8dbaa..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 0ff15815..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 85400d1b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index d4d2b552..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 859744d4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index b5d6d80a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: [+ {} +] - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index 6dc0535a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: {} - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index 55dd8df3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 dynval1: {} - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md deleted file mode 100644 index 0d3d89f4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md deleted file mode 100644 index 150cb650..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh deleted file mode 100644 index 97bed2b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md deleted file mode 100644 index ecdca7b3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md deleted file mode 100644 index 186a8e2d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh deleted file mode 100644 index 1937ad8e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┗━━ val1 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md deleted file mode 100644 index 614f2aa2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md deleted file mode 100644 index 93006110..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh deleted file mode 100644 index ee2d5b37..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md deleted file mode 100644 index 28928bd1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: [+ a value +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: [+ a value +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md deleted file mode 100644 index 2edfebeb..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: a value - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: a value - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) 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 deleted file mode 100644 index f9d88e26..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: a value - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: a value - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md deleted file mode 100644 index e5907dab..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: [+ true +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: [+ true +] - - :notebook: A variable calculated: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md deleted file mode 100644 index d5cbc979..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: true - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: true - - :notebook: A variable calculated: true ← loaded from rougail-test (:hourglass_flowing_sand: true) 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 deleted file mode 100644 index 4b366410..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: true - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: true - ┗━━ 📓 A variable calculated: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md deleted file mode 100644 index 56e5fb99..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: [+ A dynamic variable +]: - - [+ a value +] - - [+ a second value +] - - :open_file_folder: dynval2 - - :notebook: [+ A dynamic variable +]: - - [+ a value +] - - [+ a second value +] - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md deleted file mode 100644 index 32a4ac61..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: - - a value - - a second value - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: - - a value - - a second value - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - string3 ← loaded from rougail-test 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 deleted file mode 100644 index d33040e2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭───────────────────── Caption ─────────────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -│ (⏳ Original default value) │ -╰───────────────────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: - ┃  ┣━━ a value - ┃  ┗━━ a second value - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: - ┃  ┣━━ a value - ┃  ┗━━ a second value - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ a value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ a second value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 4653c375..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index acc506d8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index 731e7dfc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index 7b10d58b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 5131cf37..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index e294bd6c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 576afbec..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index 41e2ddef..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index f587371c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic famify for val2 -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index a69eb639..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 58e5de03..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index f47218ae..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index 3619af7b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Unmodifiable variable +] -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: [+ a dynamic family +] - - :notebook: [+ a variable +]: [+ null +] - - :open_file_folder: [+ a family +] - - :notebook: [+ a new variable +]: [+ null +] diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index a18372de..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Unmodifiable variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable: null - - :open_file_folder: a family - - :notebook: a new variable: null 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 deleted file mode 100644 index 494c86b4..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Unmodifiable variable Modified value │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable: null -  ┗━━ 📂 a family -   ┗━━ 📓 a new variable: null diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md deleted file mode 100644 index 9c1b208c..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.md deleted file mode 100644 index b48f8a48..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh deleted file mode 100644 index 66f6f496..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md deleted file mode 100644 index 767a8fbc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ /dev/null @@ -1,33 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - [- val3 -] ← loaded from rougail-test - - [- val4 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md deleted file mode 100644 index 534bac6b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md +++ /dev/null @@ -1,34 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - val3 ← loaded from rougail-test - - val4 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh deleted file mode 100644 index 5ec34da1..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh +++ /dev/null @@ -1,31 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┣━━ val2 ◀ loaded from rougail-test - ┃ ┣━━ val3 ◀ loaded from rougail-test - ┃ ┗━━ val4 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val3) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md deleted file mode 100644 index d1063872..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.md deleted file mode 100644 index 892a3349..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh deleted file mode 100644 index 91541796..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md deleted file mode 100644 index 6b3a9c36..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md deleted file mode 100644 index b87e5134..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh deleted file mode 100644 index 242060a3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md deleted file mode 100644 index d38c3fbf..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md deleted file mode 100644 index ebe7fe59..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh deleted file mode 100644 index 9d75028a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md deleted file mode 100644 index 9668b2c2..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md deleted file mode 100644 index 9b987a89..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh deleted file mode 100644 index 1489f2ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index 1cf48b29..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 8314bdf3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 411a0f48..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 2b591268..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index 504f8767..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index 606d6575..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 asuffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md deleted file mode 100644 index 1f4a8f70..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.md deleted file mode 100644 index 14a88795..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh deleted file mode 100644 index 83183863..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md deleted file mode 100644 index e9710619..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.md deleted file mode 100644 index bb9844f9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh deleted file mode 100644 index 73056139..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_inside_empty.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index 97dc6347..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.md deleted file mode 100644 index dbb025b8..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh deleted file mode 100644 index ddcef224..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 5921e7e9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index f67f8984..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index 25c908c6..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md deleted file mode 100644 index 2b83e962..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md deleted file mode 100644 index a2957910..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh deleted file mode 100644 index ec82fc67..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📂 A dynamic family - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 A dynamic family - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┣━━ 📂 A dynamic family -  ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 A dynamic family -   ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md deleted file mode 100644 index 92eb1e62..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md deleted file mode 100644 index 11712f71..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh deleted file mode 100644 index 10be0008..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md deleted file mode 100644 index c318ac7a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ /dev/null @@ -1,45 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md deleted file mode 100644 index 4efab94e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md +++ /dev/null @@ -1,46 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh deleted file mode 100644 index e8934279..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh +++ /dev/null @@ -1,43 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string1) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string2) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string3) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string1) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string2) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string3) diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md deleted file mode 100644 index 02e25398..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.md deleted file mode 100644 index 5a1a6f63..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh deleted file mode 100644 index 60476413..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: -┃  ┗━━ a ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 extra - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md deleted file mode 100644 index f8854db9..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.md b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.md deleted file mode 100644 index 175907c3..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh deleted file mode 100644 index bf02dc7b..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9extra_dynamic_extra.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📂 général -┃  ┗━━ 📓 No change: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃   ┣━━ string2 ◀ loaded from rougail-test -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 extra - ┣━━ 📓 a variable: - ┃ ┗━━ a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 540a6f98..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.md b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.md deleted file mode 100644 index 92fd1e0a..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 4f343e74..00000000 --- a/tests/results/test_namespace_mandatory_secrets/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index be1f1708..00000000 --- a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.md b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.md deleted file mode 100644 index 821b19dc..00000000 --- a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh deleted file mode 100644 index 211ebe33..00000000 --- a/tests/results/test_namespace_mandatory_secrets/68_0family_leadership_mode.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 A leader -   ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/00_0no_variable_default_version.gitlab.md b/tests/results/test_namespace_read_write/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_default_version.gitlab.md rename to tests/results/test_namespace_read_write/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory/00_0no_variable_default_version.md b/tests/results/test_namespace_read_write/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_default_version.md rename to tests/results/test_namespace_read_write/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory/00_0no_variable_default_version.sh b/tests/results/test_namespace_read_write/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_default_version.sh rename to tests/results/test_namespace_read_write/04_1jinja_and_hidden.sh diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable10.sh rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory/00_0no_variable_remove_version.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_remove_version.gitlab.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/00_0no_variable_remove_version.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_remove_version.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/00_0no_variable_remove_version.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/00_0no_variable_remove_version.sh rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.gitlab.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable7.sh rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.md b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.md rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable2.sh rename to tests/results/test_namespace_read_write/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md index b24fdce9..14c969da 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.gitlab.md @@ -6,12 +6,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.md index a4cfbfee..184f0b33 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.md @@ -7,12 +7,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test + - :notebook: a new variable: string1 ← loaded from rougail-test + - :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.sh index 80b27cbd..d0a58991 100644 --- a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_description.sh @@ -4,12 +4,12 @@ ╰──────────────────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test + ┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test + ┗━━ 📓 a new variable:   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..ad5592be --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,16 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..d5e6ecf8 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,17 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..7558ebbc --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,14 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) + ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..0335b7e8 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,25 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..0e1a8310 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,26 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..74c2a248 --- /dev/null +++ b/tests/results/test_namespace_read_write/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,23 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📓 A variable calculated: +  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) +  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..6d27958f --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,37 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.md b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..359acc4c --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.md @@ -0,0 +1,38 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.sh b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..30808edb --- /dev/null +++ b/tests/results/test_namespace_read_write/60_6family_subdynamic_inside.sh @@ -0,0 +1,35 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┗━━ string3 ◀ loaded from rougail-test + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃   ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┗━━ string3 ◀ loaded from rougail-test +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +   ┗━━ 📓 A variable calculated: +    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +    ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable11.gitlab.md rename to tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable11.md b/tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable11.md rename to tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable11.sh b/tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable11.sh rename to tests/results/test_namespace_read_write_errors/04_1jinja_and_hidden.sh diff --git a/tests/results/test_mandatory/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.gitlab.md similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_calculation.gitlab.md rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.gitlab.md diff --git a/tests/results/test_mandatory/16_2family_redefine_calculation.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.md similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_calculation.md rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.md diff --git a/tests/results/test_mandatory/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.sh similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_calculation.sh rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable12.sh diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md new file mode 100644 index 00000000..9d990025 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ true +] diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.md new file mode 100644 index 00000000..88c909e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: true diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.sh new file mode 100644 index 00000000..c43652c1 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory/16_2family_redefine_disabled.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_disabled.gitlab.md rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/16_2family_redefine_disabled.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_disabled.md rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/16_2family_redefine_disabled.sh rename to tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md new file mode 100644 index 00000000..14cef7dc --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md @@ -0,0 +1,9 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ false +] + - :notebook: a variable: [+ disabled +] diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.md new file mode 100644 index 00000000..af186f56 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.md @@ -0,0 +1,10 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: false + - :notebook: a variable: disabled diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh new file mode 100644 index 00000000..ef083242 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh @@ -0,0 +1,7 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 a condition: false + ┗━━ 📓 a variable: disabled diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md new file mode 100644 index 00000000..9d990025 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ true +] diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.md new file mode 100644 index 00000000..88c909e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: true diff --git a/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh new file mode 100644 index 00000000..c43652c1 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 a condition: true diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md index d4a2db42..a7040967 100644 --- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.gitlab.md @@ -5,11 +5,11 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [+ null +] - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [+ null +] - - :notebook: A new variable: [+ null +] - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [+ null +] + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [+ null +] + - :notebook: a new variable: [+ null +] + - :notebook: a new variable: - [+ null +] - [+ null +] diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.md index ea46456d..ec4173cc 100644 --- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.md @@ -6,11 +6,11 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: null - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: null - - :notebook: A new variable: null - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: null + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: null + - :notebook: a new variable: null + - :notebook: a new variable: - null - null diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.sh index 94b89f97..37183bef 100644 --- a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_description.sh @@ -3,11 +3,11 @@ ╰────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: null - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: null - ┣━━ 📓 A new variable: null - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: null + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: null + ┣━━ 📓 a new variable: null + ┗━━ 📓 a new variable:   ┣━━ null   ┗━━ null diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..4b551479 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,15 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ val1 +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ val2 +] + - :notebook: A variable calculated: [+ val1 +] diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..c6fa7fbd --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,16 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: val1 + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: val2 + - :notebook: A variable calculated: val1 diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..13192a5a --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,13 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: val2 + ┗━━ 📓 A variable calculated: val1 diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..2e3b0ec5 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,18 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [+ val1 +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [+ val2 +] + - :notebook: A variable calculated: + - [+ val1 +] diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..fe8615ab --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,19 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - val1 + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - val2 + - :notebook: A variable calculated: + - val1 diff --git a/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..b38ed037 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,16 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┗━━ val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┗━━ val2 + ┗━━ 📓 A variable calculated: +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..cc206b3a --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,32 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] diff --git a/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.md b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..55ac64c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.md @@ -0,0 +1,33 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null diff --git a/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.sh b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b62960c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_errors/60_6family_subdynamic_inside.sh @@ -0,0 +1,30 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: null + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ null + ┃ ┃  ┗━━ null + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: null + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ null + ┃   ┗━━ null + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: null +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ null +  ┃  ┗━━ null +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: null +   ┗━━ 📓 A variable calculated: +    ┣━━ null +    ┗━━ null diff --git a/tests/results/test_namespace_read_write_mandatory/00_0empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0empty.md b/tests/results/test_namespace_read_write_mandatory/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0empty.sh b/tests/results/test_namespace_read_write_mandatory/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.sh b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.md b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.sh b/tests/results/test_namespace_read_write_mandatory/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.md b/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.sh b/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_0version_underscore.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md deleted file mode 100644 index 652feeaf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.md b/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.md deleted file mode 100644 index de86a2d3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.sh deleted file mode 100644 index a4659e16..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_1empty_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md deleted file mode 100644 index 6383c35b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.md deleted file mode 100644 index 591772c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.sh deleted file mode 100644 index dc926c91..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index e5a74d04..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.md deleted file mode 100644 index 563a935c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.sh deleted file mode 100644 index 2a56e535..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 1c748cd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.md deleted file mode 100644 index f9057abf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 1f49ad35..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ a_value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index ae8bfa44..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.md deleted file mode 100644 index 04f42da8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.sh deleted file mode 100644 index b344efd6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 1f9ae4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 16ee157b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 8dc7e22b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md deleted file mode 100644 index 09326a92..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.md b/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.md deleted file mode 100644 index aff96c10..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.sh deleted file mode 100644 index 4370e383..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_4load_subfolder.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md deleted file mode 100644 index 46210fda..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.md b/tests/results/test_namespace_read_write_mandatory/00_5load_notype.md deleted file mode 100644 index b18a4be1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.sh b/tests/results/test_namespace_read_write_mandatory/00_5load_notype.sh deleted file mode 100644 index e353a6f5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_5load_notype.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md deleted file mode 100644 index 84cf8921..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean.md deleted file mode 100644 index 19c2fa36..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean.sh b/tests/results/test_namespace_read_write_mandatory/00_6boolean.sh deleted file mode 100644 index d220f06b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 4ac9370f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.md b/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.md deleted file mode 100644 index 1dc28bc5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.sh deleted file mode 100644 index 964ce027..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md deleted file mode 100644 index 383509ba..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test - - :notebook: the third variable: [- a -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice.md b/tests/results/test_namespace_read_write_mandatory/00_6choice.md deleted file mode 100644 index 5c045689..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test - - :notebook: the third variable: a ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice.sh deleted file mode 100644 index 1c096407..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┣━━ 📓 the second variable: a ◀ loaded from rougail-test - ┣━━ 📓 the third variable: a ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md deleted file mode 100644 index 06f5eaf5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_link.md deleted file mode 100644 index bf16009c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice_link.sh deleted file mode 100644 index 3b168a96..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md deleted file mode 100644 index 7394ca55..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.md deleted file mode 100644 index 987b9554..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.sh deleted file mode 100644 index eddb3823..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 45e3ebdd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.md deleted file mode 100644 index 3266f37f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.sh deleted file mode 100644 index f2b547f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 91b79b22..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.md b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.md deleted file mode 100644 index 1fd50789..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.sh b/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.sh deleted file mode 100644 index 7b36ca02..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6choice_variable_link2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 family -  ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md deleted file mode 100644 index 828cfcba..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6custom.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6custom.md b/tests/results/test_namespace_read_write_mandatory/00_6custom.md deleted file mode 100644 index f96a15ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6custom.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6custom.sh b/tests/results/test_namespace_read_write_mandatory/00_6custom.sh deleted file mode 100644 index 3cfc944a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6custom.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname.sh b/tests/results/test_namespace_read_write_mandatory/00_6domainname.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.md b/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.sh b/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6domainname_params.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md deleted file mode 100644 index 45722b34..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6float.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6float.md b/tests/results/test_namespace_read_write_mandatory/00_6float.md deleted file mode 100644 index fa113376..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6float.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6float.sh b/tests/results/test_namespace_read_write_mandatory/00_6float.sh deleted file mode 100644 index 81ba4f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6float.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6integer.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6integer.md b/tests/results/test_namespace_read_write_mandatory/00_6integer.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6integer.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6integer.sh b/tests/results/test_namespace_read_write_mandatory/00_6integer.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6integer.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md deleted file mode 100644 index 6c4c50b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6ip.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6ip.md b/tests/results/test_namespace_read_write_mandatory/00_6ip.md deleted file mode 100644 index 75aec391..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6ip.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6ip.sh b/tests/results/test_namespace_read_write_mandatory/00_6ip.sh deleted file mode 100644 index 6b4b4006..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6ip.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) - ┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) - ┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md deleted file mode 100644 index bce02121..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6network.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6network.md b/tests/results/test_namespace_read_write_mandatory/00_6network.md deleted file mode 100644 index 51eb7eec..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6network.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6network.sh b/tests/results/test_namespace_read_write_mandatory/00_6network.sh deleted file mode 100644 index bd7c3635..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6network.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) - ┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) - ┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6number.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6number.md b/tests/results/test_namespace_read_write_mandatory/00_6number.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6number.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6number.sh b/tests/results/test_namespace_read_write_mandatory/00_6number.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6number.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md deleted file mode 100644 index 657acee9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6port.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: [- 80 -] ← loaded from rougail-test - - :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6port.md b/tests/results/test_namespace_read_write_mandatory/00_6port.md deleted file mode 100644 index 672ca899..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6port.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: 80 ← loaded from rougail-test - - :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6port.sh b/tests/results/test_namespace_read_write_mandatory/00_6port.sh deleted file mode 100644 index 51381431..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6port.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test - ┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md deleted file mode 100644 index 9e350911..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp.md deleted file mode 100644 index 28255257..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp.sh b/tests/results/test_namespace_read_write_mandatory/00_6regexp.sh deleted file mode 100644 index 391f3ff0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md deleted file mode 100644 index 1fcdb643..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.md b/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.md deleted file mode 100644 index e87428e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.sh b/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.sh deleted file mode 100644 index ace68e72..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6regexp_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) - ┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md deleted file mode 100644 index 3570e649..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test - - :notebook: the second variable: [- onE7vaLues_len1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret.md b/tests/results/test_namespace_read_write_mandatory/00_6secret.md deleted file mode 100644 index afc90eb4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test - - :notebook: the second variable: onE7vaLues_len1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret.sh b/tests/results/test_namespace_read_write_mandatory/00_6secret.sh deleted file mode 100644 index 4001fb47..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: onE7vaLues_len1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md deleted file mode 100644 index 24d5aa34..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test - - :notebook: the second variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.md b/tests/results/test_namespace_read_write_mandatory/00_6secret_param.md deleted file mode 100644 index de18746b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test - - :notebook: the second variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.sh b/tests/results/test_namespace_read_write_mandatory/00_6secret_param.sh deleted file mode 100644 index 83769d56..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6secret_param.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) - ┗━━ 📓 the third variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md deleted file mode 100644 index feba490f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6string.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test - - :notebook: the third variable: [- string1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6string.md b/tests/results/test_namespace_read_write_mandatory/00_6string.md deleted file mode 100644 index 92a67213..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6string.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test - - :notebook: the third variable: string1 ← loaded from rougail-test - - :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_6string.sh b/tests/results/test_namespace_read_write_mandatory/00_6string.sh deleted file mode 100644 index 5ea4d472..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_6string.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md deleted file mode 100644 index 15acb0a9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.md b/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.md deleted file mode 100644 index 05d4413c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.sh b/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.sh deleted file mode 100644 index fd032caa..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7choice_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help.md b/tests/results/test_namespace_read_write_mandatory/00_7help.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help.sh b/tests/results/test_namespace_read_write_mandatory/00_7help.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.md b/tests/results/test_namespace_read_write_mandatory/00_7help_quote.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.sh b/tests/results/test_namespace_read_write_mandatory/00_7help_quote.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md deleted file mode 100644 index 1446148f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : [- string1 -] ← loaded from rougail-test - - :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.md b/tests/results/test_namespace_read_write_mandatory/00_7help_sup.md deleted file mode 100644 index 39e65110..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : string1 ← loaded from rougail-test - - :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.sh b/tests/results/test_namespace_read_write_mandatory/00_7help_sup.sh deleted file mode 100644 index 6e9a8afe..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7help_sup.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first : string1 ◀ loaded from rougail-test - ┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md deleted file mode 100644 index 368efedf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.md deleted file mode 100644 index a4c3f7ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.sh b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.sh deleted file mode 100644 index b52940bd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 31b6351a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.md deleted file mode 100644 index 803a52dc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.sh deleted file mode 100644 index dc59ccd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 96f5911c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.md b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.md deleted file mode 100644 index fd3e6aea..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.sh deleted file mode 100644 index d33d0502..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_doublequote3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md deleted file mode 100644 index ff15f571..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.md b/tests/results/test_namespace_read_write_mandatory/00_7value_quote.md deleted file mode 100644 index 5e710274..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.sh b/tests/results/test_namespace_read_write_mandatory/00_7value_quote.sh deleted file mode 100644 index 647669b2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_7value_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.sh b/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.sh b/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.md b/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.sh b/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8calculation_param_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md deleted file mode 100644 index e0555351..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8test.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- test -] ← loaded from rougail-test - - :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- test1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_8test.md b/tests/results/test_namespace_read_write_mandatory/00_8test.md deleted file mode 100644 index 8a0190f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8test.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: test ← loaded from rougail-test - - :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: test1 ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_8test.sh b/tests/results/test_namespace_read_write_mandatory/00_8test.sh deleted file mode 100644 index 3aa8ce13..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_8test.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: test ◀ loaded from rougail-test - ┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the sixth variable: -  ┣━━ test1 ◀ loaded from rougail-test -  ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index 78961ce9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.md deleted file mode 100644 index 992d57f8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.sh deleted file mode 100644 index 0d0c89ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test -  ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md deleted file mode 100644 index 9eef33ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.md b/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.md deleted file mode 100644 index f1f1b93d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.sh b/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.sh deleted file mode 100644 index 01ed0aac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9choice_variables.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md deleted file mode 100644 index 79eca35c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.md deleted file mode 100644 index 12e54e33..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.sh deleted file mode 100644 index 6ba63ff2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index bda2cca8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 55a02d30..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 581a9b67..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index 9b88f57c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.md deleted file mode 100644 index efea5ac0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.sh deleted file mode 100644 index faba17e7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 95ebc9c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.md deleted file mode 100644 index 2e320fbf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.sh deleted file mode 100644 index df02aa45..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index f204422c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.md b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.md deleted file mode 100644 index cd26f538..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.sh deleted file mode 100644 index 2089d1b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.md b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.md b/tests/results/test_namespace_read_write_mandatory/00_9default_integer.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_integer.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_number.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_number.md b/tests/results/test_namespace_read_write_mandatory/00_9default_number.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_number.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9default_number.sh b/tests/results/test_namespace_read_write_mandatory/00_9default_number.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9default_number.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md deleted file mode 100644 index aeac8ccc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra.md b/tests/results/test_namespace_read_write_mandatory/00_9extra.md deleted file mode 100644 index 0cae1eaf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra.sh b/tests/results/test_namespace_read_write_mandatory/00_9extra.sh deleted file mode 100644 index 47bb8105..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ rougail) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md deleted file mode 100644 index 1572b468..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.md deleted file mode 100644 index e4c7dead..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.sh b/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.sh deleted file mode 100644 index 68331fce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_calculation.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📂 extra - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md deleted file mode 100644 index 8fb88762..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.md b/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.md deleted file mode 100644 index 81751d7f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.sh b/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.sh deleted file mode 100644 index cc1f0f13..00000000 --- a/tests/results/test_namespace_read_write_mandatory/00_9extra_ouside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md deleted file mode 100644 index f6b87dbe..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.md b/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.md deleted file mode 100644 index 284d7063..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.sh deleted file mode 100644 index e45514be..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6boolean_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the sixth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the seventh variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the eighth variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md deleted file mode 100644 index f8aac52f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.md b/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.md deleted file mode 100644 index 6cca5a48..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.sh deleted file mode 100644 index 18b7d908..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6custom_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first custom variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second custom variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md deleted file mode 100644 index d8759ea9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.md b/tests/results/test_namespace_read_write_mandatory/01_6float_multi.md deleted file mode 100644 index 64a787de..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_6float_multi.sh deleted file mode 100644 index 04abfcfb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6float_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -  ┣━━ 2.2 ◀ loaded from rougail-test -  ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md deleted file mode 100644 index 46d9794a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.md deleted file mode 100644 index e6846109..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.sh deleted file mode 100644 index ed6b4eb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 6e862990..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.md b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.md deleted file mode 100644 index 69830973..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.sh deleted file mode 100644 index 52ca76a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the first variable: -  ┣━━ 1 ◀ loaded from rougail-test -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md deleted file mode 100644 index ca44d251..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.md b/tests/results/test_namespace_read_write_mandatory/01_6string_empty.md deleted file mode 100644 index a20a6db9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.sh b/tests/results/test_namespace_read_write_mandatory/01_6string_empty.sh deleted file mode 100644 index 85d95838..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_empty.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ null) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md deleted file mode 100644 index 28cbdcb4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi.md deleted file mode 100644 index 9e7a4720..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_6string_multi.sh deleted file mode 100644 index d36888f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md deleted file mode 100644 index 9c4a3f4d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.md b/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.md deleted file mode 100644 index 47e7caa2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.sh b/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.sh deleted file mode 100644 index 0341d171..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_6string_multi_length.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) - ┗━━ 📓 the variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index b06b1980..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.md deleted file mode 100644 index d9705693..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.sh deleted file mode 100644 index 751c749d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index a1d0fea1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.md deleted file mode 100644 index b46dd95d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.sh deleted file mode 100644 index 4ee8bc93..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 5a371283..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.md b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.md deleted file mode 100644 index 42b0526a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.sh deleted file mode 100644 index 7a90e727..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_7value_multi_quote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 603a7cc3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.md b/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.md deleted file mode 100644 index c17e123d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.sh deleted file mode 100644 index 2885d4da..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_8calculation_information_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index 58b87f90..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.md deleted file mode 100644 index 885fb8fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.sh deleted file mode 100644 index ddc32137..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index 0be08c2e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.md b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.md deleted file mode 100644 index 7c9aec52..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.sh deleted file mode 100644 index 47508134..00000000 --- a/tests/results/test_namespace_read_write_mandatory/01_9choice_variable_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory/02_0tags.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/02_0tags.md b/tests/results/test_namespace_read_write_mandatory/02_0tags.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory/02_0tags.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/02_0tags.sh b/tests/results/test_namespace_read_write_mandatory/02_0tags.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/02_0tags.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md deleted file mode 100644 index 5ab9ef91..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param.md deleted file mode 100644 index b3de1dac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param.sh b/tests/results/test_namespace_read_write_mandatory/04_0type_param.sh deleted file mode 100644 index 8b8121ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md deleted file mode 100644 index 71377428..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.md b/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.md deleted file mode 100644 index 3b487a4e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.sh b/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.sh deleted file mode 100644 index cf4e0fc9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_0type_param_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md deleted file mode 100644 index 589647d6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save.md deleted file mode 100644 index 8e0d9204..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.sh b/tests/results/test_namespace_read_write_mandatory/04_1auto_save.sh deleted file mode 100644 index fbc3cceb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index cda0de5b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.md deleted file mode 100644 index 9058d89c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.sh deleted file mode 100644 index 5c00df9e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index ed6a29b9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- yes -] diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index fdee8486..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 01da0468..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.md b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write_mandatory/04_1auto_save_and_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 27fc7343..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.md deleted file mode 100644 index 56cb6234..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.sh deleted file mode 100644 index 9fcedab7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index 3ac3abb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7d1f74bb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.sh deleted file mode 100644 index ac576bec..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index b3bf552a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.md deleted file mode 100644 index 5320bf99..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.sh deleted file mode 100644 index 8253d8c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 80c9d53e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.md b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.md deleted file mode 100644 index d45ac8bf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.sh deleted file mode 100644 index 5f72143c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md deleted file mode 100644 index b195f1ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.md deleted file mode 100644 index 5cf4f819..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.sh deleted file mode 100644 index 4e6546b4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 41155c8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.md deleted file mode 100644 index 19e7c258..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.sh deleted file mode 100644 index 634fa9f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_default.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md deleted file mode 100644 index 57c6d9fa..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.md deleted file mode 100644 index 3f45fb25..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.sh deleted file mode 100644 index 297c46fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_multi.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index 9ec3f363..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.md deleted file mode 100644 index e2301a75..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.sh deleted file mode 100644 index 0adee377..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index e5332f81..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 75a85eb3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index 79ddd915..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index ec72b58f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.md deleted file mode 100644 index 6781fea0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 24ec7e5a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 381729f5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.md deleted file mode 100644 index 009536b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 42b6b592..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable8.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md deleted file mode 100644 index 0cd62c2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.md deleted file mode 100644 index 64bdf8cf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.sh deleted file mode 100644 index 8a205788..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md deleted file mode 100644 index bb7ffe1e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.md deleted file mode 100644 index 0e5f2786..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.sh deleted file mode 100644 index 5f22d678..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5hidden_calculation_default_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md deleted file mode 100644 index a8452724..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators.md b/tests/results/test_namespace_read_write_mandatory/04_5validators.md deleted file mode 100644 index 19b3aa83..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators.sh deleted file mode 100644 index efea506a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md deleted file mode 100644 index 9b068281..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.md deleted file mode 100644 index 72472698..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.sh deleted file mode 100644 index 27df2808..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_differ.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) - ┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md deleted file mode 100644 index d1d91485..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.md deleted file mode 100644 index d4007c71..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.sh deleted file mode 100644 index a4f78070..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md deleted file mode 100644 index 287ee192..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.md deleted file mode 100644 index 9b5b4020..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.sh deleted file mode 100644 index 0ee860e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test (⏳ no) -  ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md deleted file mode 100644 index c405e423..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.md deleted file mode 100644 index a4131fe4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.sh deleted file mode 100644 index 43878be7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_multi3.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ (⏳ 1) -  ┗━━ (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.md b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.sh b/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_read_write_mandatory/04_5validators_warnings_all.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_not_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.md b/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.sh b/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/05_0multi_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md deleted file mode 100644 index d6c2e386..00000000 --- a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.md b/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.md deleted file mode 100644 index 70329de2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.sh deleted file mode 100644 index 49f35116..00000000 --- a/tests/results/test_namespace_read_write_mandatory/12_1auto_save_expert.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md deleted file mode 100644 index 10a88bd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.md b/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.md deleted file mode 100644 index 4b50aa75..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.sh b/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.sh deleted file mode 100644 index 37707cfb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_0redefine_description.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.md b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.md b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_mandatory/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index dd65182a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.md b/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.md deleted file mode 100644 index 7b7f9ecd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.sh deleted file mode 100644 index 614cad00..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md deleted file mode 100644 index d1f1ccf4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.md b/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.md deleted file mode 100644 index 178ce451..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.sh deleted file mode 100644 index 23becc10..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5exists_nonexists.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.md b/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.sh b/tests/results/test_namespace_read_write_mandatory/16_5exists_redefine.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md deleted file mode 100644 index f759e9a7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.md deleted file mode 100644 index a7111393..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.sh deleted file mode 100644 index f07415c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_choice.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md deleted file mode 100644 index ca57cd14..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.md deleted file mode 100644 index 57f96de9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.sh deleted file mode 100644 index 3a5a9f72..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 new description -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md deleted file mode 100644 index 9f143013..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.md deleted file mode 100644 index bb413ada..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.sh deleted file mode 100644 index d76873b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md deleted file mode 100644 index 7a451ad4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.md b/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.md deleted file mode 100644 index 9b3b41d4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.sh b/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.sh deleted file mode 100644 index f95d5c96..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_5test_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md deleted file mode 100644 index b257a746..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.md b/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.md deleted file mode 100644 index 3680b158..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.sh b/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.sh deleted file mode 100644 index 95081cf8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6choice_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_family.md b/tests/results/test_namespace_read_write_mandatory/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_family.sh b/tests/results/test_namespace_read_write_mandatory/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f308e3a6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.md b/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.md deleted file mode 100644 index ca4feef3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.sh deleted file mode 100644 index 716e4666..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16_6exists_redefine_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 new description - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a second family -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md deleted file mode 100644 index 69e26651..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16exists_exists.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16exists_exists.md b/tests/results/test_namespace_read_write_mandatory/16exists_exists.md deleted file mode 100644 index 8e7347ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16exists_exists.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/16exists_exists.sh b/tests/results/test_namespace_read_write_mandatory/16exists_exists.sh deleted file mode 100644 index e572c5de..00000000 --- a/tests/results/test_namespace_read_write_mandatory/16exists_exists.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.md b/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write_mandatory/17_5redefine_leadership.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0empty_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0empty_family.md b/tests/results/test_namespace_read_write_mandatory/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0empty_family.sh b/tests/results/test_namespace_read_write_mandatory/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md deleted file mode 100644 index fcc4d7fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0family_append.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_append.md b/tests/results/test_namespace_read_write_mandatory/20_0family_append.md deleted file mode 100644 index 05dd4c7c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0family_append.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_append.sh b/tests/results/test_namespace_read_write_mandatory/20_0family_append.sh deleted file mode 100644 index 4668f151..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0family_append.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A family -  ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.md b/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.sh b/tests/results/test_namespace_read_write_mandatory/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory/20_0multi_family.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_basic.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_expert.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md deleted file mode 100644 index ee5c84a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.md b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.md deleted file mode 100644 index d55f9aff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.sh deleted file mode 100644 index c245712f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0multi_family_order.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a sub family -  ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 23cf1572..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.md b/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.md deleted file mode 100644 index bd753eb0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.sh deleted file mode 100644 index ff6184ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.md b/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_mandatory/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index 9bf0d70c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.md deleted file mode 100644 index 93b860df..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.sh deleted file mode 100644 index 1905b9c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┣━━ 📓 dynamic: -  ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 56cb8522..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.md b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.md deleted file mode 100644 index 0073c1d5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.sh b/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.sh deleted file mode 100644 index 6f7622e7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md deleted file mode 100644 index 7818a4f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_7help_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_7help_family.md b/tests/results/test_namespace_read_write_mandatory/20_7help_family.md deleted file mode 100644 index 4351668d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_7help_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_7help_family.sh b/tests/results/test_namespace_read_write_mandatory/20_7help_family.sh deleted file mode 100644 index f302d635..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_7help_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 the first family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 the second family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md deleted file mode 100644 index 130fb755..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.md b/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.md deleted file mode 100644 index 4d6baa86..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.sh deleted file mode 100644 index ae65e2c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/20_9default_information_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md deleted file mode 100644 index fcb3871a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.md deleted file mode 100644 index a86a61c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.sh deleted file mode 100644 index da5651af..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md deleted file mode 100644 index 8c36dd68..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.md deleted file mode 100644 index f9bb12d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.sh deleted file mode 100644 index a5da6e15..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_boolean.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📂 a family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 18e5d369..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f971677c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 709bdc74..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index fdf1f057..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index 7c66dd0e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index 3d860847..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md deleted file mode 100644 index 535acc82..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a family: [+ {} +] diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.md deleted file mode 100644 index a31ae5d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a family: {} diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.sh deleted file mode 100644 index 0ce5e7a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_condition_with_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ 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: {} diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 892a6f62..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index 65358fb2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 3b98238c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 a subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index ea03d0e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.md deleted file mode 100644 index 4b9ada76..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index ccb87621..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index c9a709ab..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.md b/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.md deleted file mode 100644 index 95ce84c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.sh deleted file mode 100644 index a44a9537..00000000 --- a/tests/results/test_namespace_read_write_mandatory/24_7validators_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test -  ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.md b/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_mandatory/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_diff_name.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 951efe61..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.md deleted file mode 100644 index 3e4359a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index c1a9e421..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md deleted file mode 100644 index 6260abf7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.md deleted file mode 100644 index 33e8c616..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.sh deleted file mode 100644 index 4798d509..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md deleted file mode 100644 index 5601ba9f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.md deleted file mode 100644 index a464bc15..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.sh deleted file mode 100644 index e56c937e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_submulti_calculation.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 22902558..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.md deleted file mode 100644 index be502540..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.sh deleted file mode 100644 index d0145bc3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 155ae333..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.md deleted file mode 100644 index 4b9c3a59..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.sh deleted file mode 100644 index 9232a71b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 49a94371..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.md deleted file mode 100644 index 7bb2ca00..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.sh deleted file mode 100644 index caf94ed4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 general - ┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📂 general1 -  ┗━━ 📂 leader -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 leader -    ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md deleted file mode 100644 index 5d9de3fb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.md b/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.md deleted file mode 100644 index 8d0e32b4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.sh deleted file mode 100644 index c8acc755..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_0leadership_reduce.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -   ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index dee2a6d3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.md b/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.md deleted file mode 100644 index 814a7898..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.sh deleted file mode 100644 index 92836c84..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_1leadership_append_follower.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md deleted file mode 100644 index ffb5fec5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.md deleted file mode 100644 index cbdf8529..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.sh deleted file mode 100644 index dc0c00f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_calculation_param_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md deleted file mode 100644 index 7dd2a13a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: [- string1 -] ← loaded from rougail-test - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: [- string2 -] ← loaded from rougail-test - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a first follower: [- string3 -] ← loaded from rougail-test - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.md b/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.md deleted file mode 100644 index 77555235..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: string1 ← loaded from rougail-test - - :notebook: a second follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: string2 ← loaded from rougail-test - - :notebook: a second follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a first follower: string3 ← loaded from rougail-test - - :notebook: a second follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.sh deleted file mode 100644 index 5a551251..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_2leadership_leader_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ 📓 a first follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┣━━ 📓 a first follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a first follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md deleted file mode 100644 index 2fd2afac..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.md deleted file mode 100644 index 58513928..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.sh deleted file mode 100644 index e11ff294..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 a first multi variable: - ┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) - ┃ ┗━━ (⏳ false) - ┗━━ 📓 a second multi variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md deleted file mode 100644 index e5a29bfc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: [- true -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.md deleted file mode 100644 index eb03c244..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: true ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.sh deleted file mode 100644 index 10bcd049..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_boolean_return_none.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a second variable: true ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md deleted file mode 100644 index fe13f94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.md deleted file mode 100644 index b5e804c8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.sh deleted file mode 100644 index 82566a24..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_integer.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 first integer variable: 1 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📓 second integer variable: 1 ◀ loaded from rougail-test (⏳ 4) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index dc2ee9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.md deleted file mode 100644 index 61402ea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.sh deleted file mode 100644 index 2fc25998..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index f5500bde..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e04f7b41..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 00792e71..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a family -  ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index 1e731359..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 75031777..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index a75ed8c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 first family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 second family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index af861c6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index 86ac86a3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index 6576e5bc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 430a2447..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index 6f1d212e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 6dbe6cff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index e7cde94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index bb85f044..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 239aef89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 2e14eb73..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test - - :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index 10272605..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test - - :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index a4b48bd9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leader - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 leader - ┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test - ┗━━ 📓 variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 78e937f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 61a6efb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 65296704..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index b4b858ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index 7ce44ede..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index ae080aaa..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 900df4e4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.md deleted file mode 100644 index 3e994562..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.sh deleted file mode 100644 index a9cfe4d2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a calculated variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 950cd91e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 0f41960b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,29 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index 153ef6b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,26 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 36879bba..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index b92a2b55..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 6526a49a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md deleted file mode 100644 index 47b922dd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.md b/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.md deleted file mode 100644 index 624251f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.sh b/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.sh deleted file mode 100644 index 05a60f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory/41_0choice_leader.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 The leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.md b/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write_mandatory/44_0leadership_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.md b/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write_mandatory/44_0leadership_leader_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write_mandatory/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md deleted file mode 100644 index 7b5e2fcd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.md deleted file mode 100644 index f3c31f4a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.sh deleted file mode 100644 index 7e983835..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index c94e7f8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index 788a4221..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index ed8c275a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.md b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 164950d9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index 10f5dc08..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index 1e806099..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index 23d88b47..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index bd555e36..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index 55f68461..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md deleted file mode 100644 index ece30473..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.md deleted file mode 100644 index 8f91e324..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.sh deleted file mode 100644 index 7d40319d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/44_9calculated_default_leadership_leader.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leader -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md deleted file mode 100644 index b6381c78..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.md deleted file mode 100644 index 0bff1880..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.sh deleted file mode 100644 index 7ce61e50..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md deleted file mode 100644 index 61798b1c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.md deleted file mode 100644 index 812ccfa3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.sh deleted file mode 100644 index 83a49c2e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md deleted file mode 100644 index 0c649ccb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.md deleted file mode 100644 index 7453d466..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.sh deleted file mode 100644 index 3aaa13d2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md deleted file mode 100644 index 10cab53f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.md deleted file mode 100644 index ad92b1f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.sh deleted file mode 100644 index ef631cf8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_0_type_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index 0aeb0d2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.md deleted file mode 100644 index 56f388ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.sh deleted file mode 100644 index 6d7c1315..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index 6ba3e9a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index 2a9c0342..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index debc28e9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md deleted file mode 100644 index 9d322e4a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.md deleted file mode 100644 index d0aab92f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.sh deleted file mode 100644 index 833a7c15..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_integer_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test - ┃ ┗━━ 2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md deleted file mode 100644 index 1d7565d1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.md deleted file mode 100644 index 622ee06e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - 2 ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.sh deleted file mode 100644 index 3c9f31d0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_jinja_number.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 1) - ┃ ┗━━ 2 ◀ loaded from rougail-test (⏳ 2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index 0d314879..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.md deleted file mode 100644 index b6183bcc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.sh deleted file mode 100644 index 12e127fa..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index 91335f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 2b3db0c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index f165eac7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index 74f91973..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 686a11a6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index 640e9ba8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index f1cdce30..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.md deleted file mode 100644 index 5d503845..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.sh deleted file mode 100644 index f591169c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_static.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 221c10b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.md deleted file mode 100644 index 31eb49da..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.sh deleted file mode 100644 index 06bdcb35..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) - ┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 8366d36a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 79ba7f5a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 3ff9cd5c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 0a702637..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 0216a150..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index 981e8b8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index 6528840b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index f43ccdf5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index 8b1c8aba..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index 15909e16..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 3eca49f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index e1c15e6c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_empty.md b/tests/results/test_namespace_read_write_mandatory/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.md b/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md deleted file mode 100644 index df40ada6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.md b/tests/results/test_namespace_read_write_mandatory/60_0family_mode.md deleted file mode 100644 index c75b0765..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.sh b/tests/results/test_namespace_read_write_mandatory/60_0family_mode.sh deleted file mode 100644 index 0f32dc94..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_0family_mode.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index 5b1efe4d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.md b/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.md deleted file mode 100644 index 42d8df80..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.sh deleted file mode 100644 index 7b3a3fa4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index d217053c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 14293c23..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 513562d1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index da38c2cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index bf67e7b0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a73b640b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 457f4cf0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index 8626342b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index d1912bca..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 0e15a617..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 9a306743..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index 367604d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index b046102c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.md deleted file mode 100644 index f123acc0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4846c161..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index bd8bd966..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index 8b811f33..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index b25f118c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md deleted file mode 100644 index a17f1c24..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.md deleted file mode 100644 index 288921c7..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.sh deleted file mode 100644 index d7161592..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md deleted file mode 100644 index 832d9038..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.md deleted file mode 100644 index 784ffa53..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.sh deleted file mode 100644 index 80a96b69..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc2_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index b24fdce9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.md deleted file mode 100644 index a4cfbfee..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 80b27cbd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index b19036b2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 11d8dbaa..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 0ff15815..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 85400d1b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index d4d2b552..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 859744d4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index b5d6d80a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: [+ {} +] - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index 6dc0535a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: {} - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index 55dd8df3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 dynval1: {} - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md deleted file mode 100644 index 0d3d89f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.md deleted file mode 100644 index 150cb650..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh deleted file mode 100644 index 97bed2b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md deleted file mode 100644 index ecdca7b3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.md deleted file mode 100644 index 186a8e2d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh deleted file mode 100644 index 1937ad8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┗━━ val1 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md deleted file mode 100644 index 614f2aa2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.md deleted file mode 100644 index 93006110..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh deleted file mode 100644 index ee2d5b37..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_empty_3.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md deleted file mode 100644 index 3ce63451..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.md deleted file mode 100644 index 2ab152f8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.sh deleted file mode 100644 index e699c860..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md deleted file mode 100644 index 6ab9e5f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md deleted file mode 100644 index f02fde5c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh deleted file mode 100644 index 654015b9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md deleted file mode 100644 index fb9a39d5..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md deleted file mode 100644 index 7d213414..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh deleted file mode 100644 index 1e9c580b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ a value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ a second value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 4653c375..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index acc506d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index 731e7dfc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index 7b10d58b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 5131cf37..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index e294bd6c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 576afbec..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index 41e2ddef..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index f587371c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic famify for val2 -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index a69eb639..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 58e5de03..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index f47218ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index 417396b0..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index c452a18a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index c539e478..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a family -   ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md deleted file mode 100644 index 9c1b208c..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.md deleted file mode 100644 index b48f8a48..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.sh deleted file mode 100644 index 66f6f496..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md deleted file mode 100644 index 767a8fbc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ /dev/null @@ -1,33 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - [- val3 -] ← loaded from rougail-test - - [- val4 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.md deleted file mode 100644 index 534bac6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.md +++ /dev/null @@ -1,34 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - val3 ← loaded from rougail-test - - val4 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.sh deleted file mode 100644 index 5ec34da1..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_unknown_suffix_empty.sh +++ /dev/null @@ -1,31 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┣━━ val2 ◀ loaded from rougail-test - ┃ ┣━━ val3 ◀ loaded from rougail-test - ┃ ┗━━ val4 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val3) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md deleted file mode 100644 index d1063872..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.md deleted file mode 100644 index 892a3349..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.sh deleted file mode 100644 index 91541796..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md deleted file mode 100644 index 6b3a9c36..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.md deleted file mode 100644 index b87e5134..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.sh deleted file mode 100644 index 242060a3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside2_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_1_0.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_jinja_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md deleted file mode 100644 index d38c3fbf..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md deleted file mode 100644 index ebe7fe59..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh deleted file mode 100644 index 9d75028a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md deleted file mode 100644 index 9668b2c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md deleted file mode 100644 index 9b987a89..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh deleted file mode 100644 index 1489f2ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index 1cf48b29..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 8314bdf3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 411a0f48..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 2b591268..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index 504f8767..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index 606d6575..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 asuffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md deleted file mode 100644 index 1f4a8f70..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.md deleted file mode 100644 index 14a88795..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.sh deleted file mode 100644 index 83183863..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md deleted file mode 100644 index e9710619..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.md deleted file mode 100644 index bb9844f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.sh deleted file mode 100644 index 73056139..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_inside_empty.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index 97dc6347..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.md deleted file mode 100644 index dbb025b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.sh deleted file mode 100644 index ddcef224..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 5921e7e9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index f67f8984..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index 25c908c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md deleted file mode 100644 index 2b83e962..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md deleted file mode 100644 index a2957910..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh deleted file mode 100644 index ec82fc67..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📂 A dynamic family - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 A dynamic family - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┣━━ 📂 A dynamic family -  ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 A dynamic family -   ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md deleted file mode 100644 index 92eb1e62..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.md deleted file mode 100644 index 11712f71..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.sh deleted file mode 100644 index 10be0008..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md deleted file mode 100644 index c318ac7a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ /dev/null @@ -1,45 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.md deleted file mode 100644 index 4efab94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.md +++ /dev/null @@ -1,46 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh deleted file mode 100644 index e8934279..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_sub_dynamic_empty2.sh +++ /dev/null @@ -1,43 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string1) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string2) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string3) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string1) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string2) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_6family_dynamic_suffix_auto_multi2.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md deleted file mode 100644 index 02e25398..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.md deleted file mode 100644 index 5a1a6f63..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.sh deleted file mode 100644 index 60476413..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: -┃  ┗━━ a ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 extra - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md deleted file mode 100644 index f8854db9..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.md b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.md deleted file mode 100644 index 175907c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.sh deleted file mode 100644 index bf02dc7b..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9extra_dynamic_extra.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📂 général -┃  ┗━━ 📓 No change: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃   ┣━━ string2 ◀ loaded from rougail-test -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 extra - ┣━━ 📓 a variable: - ┃ ┗━━ a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 540a6f98..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.md b/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.md deleted file mode 100644 index 92fd1e0a..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 4f343e74..00000000 --- a/tests/results/test_namespace_read_write_mandatory/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index be1f1708..00000000 --- a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.md b/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.md deleted file mode 100644 index 821b19dc..00000000 --- a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.sh deleted file mode 100644 index 211ebe33..00000000 --- a/tests/results/test_namespace_read_write_mandatory/68_0family_leadership_mode.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 A leader -   ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_0version_underscore.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md deleted file mode 100644 index 652feeaf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.md deleted file mode 100644 index de86a2d3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh deleted file mode 100644 index a4659e16..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_1empty_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md deleted file mode 100644 index 6383c35b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.md deleted file mode 100644 index 591772c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh deleted file mode 100644 index dc926c91..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index e5a74d04..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.md deleted file mode 100644 index 563a935c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh deleted file mode 100644 index 2a56e535..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 1c748cd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md deleted file mode 100644 index f9057abf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 1f49ad35..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ a_value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index ae8bfa44..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.md deleted file mode 100644 index 04f42da8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh deleted file mode 100644 index b344efd6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 1f9ae4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 16ee157b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 8dc7e22b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index 7e5f929b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test - - :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md deleted file mode 100644 index 826eb75d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test - - :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index 247a729e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ domain1.lan ◀ loaded from rougail-test - ┃ ┗━━ domain2.lan ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) -  ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md deleted file mode 100644 index 09326a92..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.md deleted file mode 100644 index aff96c10..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh deleted file mode 100644 index 4370e383..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_4load_subfolder.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md deleted file mode 100644 index 46210fda..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.md deleted file mode 100644 index b18a4be1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh deleted file mode 100644 index e353a6f5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_5load_notype.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md deleted file mode 100644 index 84cf8921..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.md deleted file mode 100644 index 19c2fa36..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh deleted file mode 100644 index d220f06b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 4ac9370f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.md deleted file mode 100644 index 1dc28bc5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh deleted file mode 100644 index 964ce027..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md deleted file mode 100644 index 383509ba..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test - - :notebook: the third variable: [- a -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.md deleted file mode 100644 index 5c045689..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test - - :notebook: the third variable: a ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh deleted file mode 100644 index 1c096407..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┣━━ 📓 the second variable: a ◀ loaded from rougail-test - ┣━━ 📓 the third variable: a ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md deleted file mode 100644 index 06f5eaf5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- a -] ← loaded from rougail-test - - :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.md deleted file mode 100644 index bf16009c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: a ← loaded from rougail-test - - :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.sh deleted file mode 100644 index 3b168a96..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: a ◀ loaded from rougail-test - ┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md deleted file mode 100644 index 7394ca55..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.md deleted file mode 100644 index 987b9554..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh deleted file mode 100644 index eddb3823..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 45e3ebdd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.md deleted file mode 100644 index 3266f37f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.sh deleted file mode 100644 index f2b547f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 91b79b22..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.md deleted file mode 100644 index 1fd50789..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.sh deleted file mode 100644 index 7b36ca02..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6choice_variable_link2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 family -  ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md deleted file mode 100644 index 828cfcba..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.md deleted file mode 100644 index f96a15ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh deleted file mode 100644 index 3cfc944a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6custom.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md deleted file mode 100644 index ce599e21..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.md deleted file mode 100644 index 0c74f8ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh deleted file mode 100644 index 14f015cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6domainname_params.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md deleted file mode 100644 index 45722b34..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.md deleted file mode 100644 index fa113376..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh deleted file mode 100644 index 81ba4f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6float.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6integer.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md deleted file mode 100644 index 6c4c50b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.md deleted file mode 100644 index 75aec391..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) - - :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) - - :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.sh deleted file mode 100644 index 6b4b4006..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6ip.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) - ┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) - ┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md deleted file mode 100644 index bce02121..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.md deleted file mode 100644 index 51eb7eec..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) - - :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) - - :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.sh deleted file mode 100644 index bd7c3635..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6network.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) - ┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) - ┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md deleted file mode 100644 index a454aef6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.md deleted file mode 100644 index ccc0482e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh deleted file mode 100644 index ceeab126..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6number.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) - ┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md deleted file mode 100644 index 657acee9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: [- 80 -] ← loaded from rougail-test - - :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.md deleted file mode 100644 index 672ca899..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a port variable: 80 ← loaded from rougail-test - - :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh deleted file mode 100644 index 51381431..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6port.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test - ┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md deleted file mode 100644 index 9e350911..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.md deleted file mode 100644 index 28255257..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh deleted file mode 100644 index 391f3ff0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md deleted file mode 100644 index 1fcdb643..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.md deleted file mode 100644 index e87428e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) - - :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.sh deleted file mode 100644 index ace68e72..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6regexp_link.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) - ┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md deleted file mode 100644 index d66294e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- ********** -] ← loaded from rougail-test - - :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.md deleted file mode 100644 index 1d0ed393..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: ********** ← loaded from rougail-test - - :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.sh deleted file mode 100644 index 7157f268..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test - ┗━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md deleted file mode 100644 index 940b5ca4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- ********** -] ← loaded from rougail-test - - :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) - - :notebook: the third variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.md deleted file mode 100644 index f05c24f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: ********** ← loaded from rougail-test - - :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) - - :notebook: the third variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.sh deleted file mode 100644 index 29461a36..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6secret_param.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test - ┣━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) - ┗━━ 📓 the third variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md deleted file mode 100644 index feba490f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test - - :notebook: the third variable: [- string1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.md deleted file mode 100644 index 92a67213..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test - - :notebook: the third variable: string1 ← loaded from rougail-test - - :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) - - :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh deleted file mode 100644 index 5ea4d472..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_6string.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) - ┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md deleted file mode 100644 index 15acb0a9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.md deleted file mode 100644 index 05d4413c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh deleted file mode 100644 index fd032caa..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7choice_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md deleted file mode 100644 index 1446148f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : [- string1 -] ← loaded from rougail-test - - :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.md deleted file mode 100644 index 39e65110..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first : string1 ← loaded from rougail-test - - :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.sh deleted file mode 100644 index 6e9a8afe..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7help_sup.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first : string1 ◀ loaded from rougail-test - ┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md deleted file mode 100644 index 368efedf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.md deleted file mode 100644 index a4c3f7ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh deleted file mode 100644 index b52940bd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 31b6351a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.md deleted file mode 100644 index 803a52dc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh deleted file mode 100644 index dc59ccd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 96f5911c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.md deleted file mode 100644 index fd3e6aea..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh deleted file mode 100644 index d33d0502..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_doublequote3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md deleted file mode 100644 index ff15f571..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.md deleted file mode 100644 index 5e710274..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh deleted file mode 100644 index 647669b2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_7value_quote.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md deleted file mode 100644 index 9284ef76..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.md deleted file mode 100644 index 7f09a818..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.sh deleted file mode 100644 index d9bf1de7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8calculation_param_namespace.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ Rougail) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md deleted file mode 100644 index e0555351..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- test -] ← loaded from rougail-test - - :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: [- test1 -] ← loaded from rougail-test - - :notebook: the forth variable: [- null -] ← loaded from rougail-test - - :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.md deleted file mode 100644 index 8a0190f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: test ← loaded from rougail-test - - :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: the third variable: test1 ← loaded from rougail-test - - :notebook: the forth variable: null ← loaded from rougail-test - - :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh deleted file mode 100644 index 3aa8ce13..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_8test.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: test ◀ loaded from rougail-test - ┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) - ┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: null ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the sixth variable: -  ┣━━ test1 ◀ loaded from rougail-test -  ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index 78961ce9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.md deleted file mode 100644 index 992d57f8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh deleted file mode 100644 index 0d0c89ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test -  ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md deleted file mode 100644 index 9eef33ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.md deleted file mode 100644 index f1f1b93d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh deleted file mode 100644 index 01ed0aac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9choice_variables.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md deleted file mode 100644 index 79eca35c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.md deleted file mode 100644 index 12e54e33..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh deleted file mode 100644 index 6ba63ff2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 416bd675..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 4d5369f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index fc7b8770..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index bda2cca8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 55a02d30..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 581a9b67..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index 9b88f57c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.md deleted file mode 100644 index efea5ac0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh deleted file mode 100644 index faba17e7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 95ebc9c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md deleted file mode 100644 index 2e320fbf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh deleted file mode 100644 index df02aa45..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 my_variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 my_calculated_variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index f204422c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.md deleted file mode 100644 index cd26f538..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh deleted file mode 100644 index 2089d1b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index 4e461cb9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.md deleted file mode 100644 index 0f4300c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.sh deleted file mode 100644 index 562596b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md deleted file mode 100644 index b185dc29..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.md deleted file mode 100644 index f0603c3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.sh deleted file mode 100644 index 1d091738..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9default_number.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md deleted file mode 100644 index aeac8ccc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.md deleted file mode 100644 index 0cae1eaf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: rougail) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh deleted file mode 100644 index 47bb8105..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ rougail) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md deleted file mode 100644 index 1572b468..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.md deleted file mode 100644 index e4c7dead..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :open_file_folder: extra - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh deleted file mode 100644 index 68331fce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_calculation.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📂 extra - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md deleted file mode 100644 index 8fb88762..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.md b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.md deleted file mode 100644 index 81751d7f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :open_file_folder: extra - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.sh deleted file mode 100644 index cc1f0f13..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/00_9extra_ouside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📂 extra - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ value in extra) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md deleted file mode 100644 index f6b87dbe..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.md deleted file mode 100644 index 284d7063..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh deleted file mode 100644 index e45514be..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6boolean_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the second variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the third variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┣━━ 📓 the forth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the fifth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the sixth variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 the seventh variable: - ┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 the eighth variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md deleted file mode 100644 index f8aac52f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.md deleted file mode 100644 index 6cca5a48..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh deleted file mode 100644 index 18b7d908..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6custom_multi.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first custom variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second custom variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md deleted file mode 100644 index d8759ea9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.md deleted file mode 100644 index 64a787de..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh deleted file mode 100644 index 04abfcfb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6float_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┃ ┣━━ 2.2 ◀ loaded from rougail-test - ┃ ┗━━ 3.3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -  ┣━━ 2.2 ◀ loaded from rougail-test -  ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md deleted file mode 100644 index 46d9794a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.md deleted file mode 100644 index e6846109..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test - - :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.sh deleted file mode 100644 index ed6b4eb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┃ ┣━━ 2 ◀ loaded from rougail-test - ┃ ┗━━ 3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 6e862990..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.md deleted file mode 100644 index 69830973..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh deleted file mode 100644 index 52ca76a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the first variable: -  ┣━━ 1 ◀ loaded from rougail-test -  ┣━━ 2 ◀ loaded from rougail-test -  ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md deleted file mode 100644 index ca44d251..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.md deleted file mode 100644 index a20a6db9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh deleted file mode 100644 index 85d95838..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_empty.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ null) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md deleted file mode 100644 index 28cbdcb4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.gitlab.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.md deleted file mode 100644 index 9e7a4720..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.md +++ /dev/null @@ -1,41 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh deleted file mode 100644 index d36888f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi.sh +++ /dev/null @@ -1,38 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the second variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the third variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the forth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the fifth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the sixth variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 the seventh variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 the eighth variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md deleted file mode 100644 index 9c4a3f4d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.md deleted file mode 100644 index 47e7caa2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.sh deleted file mode 100644 index 0341d171..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_6string_multi_length.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) - ┗━━ 📓 the variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index b06b1980..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.md deleted file mode 100644 index d9705693..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh deleted file mode 100644 index 751c749d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index a1d0fea1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.md deleted file mode 100644 index b46dd95d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh deleted file mode 100644 index 4ee8bc93..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 5a371283..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.md deleted file mode 100644 index 42b0526a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh deleted file mode 100644 index 7a90e727..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_7value_multi_quote.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 603a7cc3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.md deleted file mode 100644 index c17e123d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh deleted file mode 100644 index 2885d4da..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_8calculation_information_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index 58b87f90..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.md deleted file mode 100644 index 885fb8fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh deleted file mode 100644 index ddc32137..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_multi.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index 0be08c2e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.md deleted file mode 100644 index 7c9aec52..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.sh deleted file mode 100644 index 47508134..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/01_9choice_variable_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md deleted file mode 100644 index 28a1d218..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: [- string1 -] ← loaded from rougail-test - - :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.md b/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.md deleted file mode 100644 index da221c00..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: the first variable: string1 ← loaded from rougail-test - - :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.sh b/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.sh deleted file mode 100644 index 8a20d78b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/02_0tags.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md deleted file mode 100644 index 5ab9ef91..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.md deleted file mode 100644 index b3de1dac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh deleted file mode 100644 index 8b8121ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md deleted file mode 100644 index 71377428..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.md deleted file mode 100644 index 3b487a4e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.sh deleted file mode 100644 index cf4e0fc9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_0type_param_integer.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md deleted file mode 100644 index 589647d6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.md deleted file mode 100644 index 8e0d9204..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: an auto save variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh deleted file mode 100644 index fbc3cceb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index cda0de5b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.md deleted file mode 100644 index 9058d89c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh deleted file mode 100644 index 5c00df9e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index ed6a29b9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- yes -] diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index fdee8486..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 01da0468..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: yes diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f1172221..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md deleted file mode 100644 index 5a107313..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh deleted file mode 100644 index a74f37a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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 - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 27fc7343..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md deleted file mode 100644 index 56cb6234..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh deleted file mode 100644 index 9fcedab7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index 3ac3abb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md deleted file mode 100644 index 7d1f74bb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: string1 ← loaded from rougail-test - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh deleted file mode 100644 index ac576bec..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index b3bf552a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md deleted file mode 100644 index 5320bf99..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh deleted file mode 100644 index 8253d8c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 80c9d53e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md deleted file mode 100644 index d45ac8bf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh deleted file mode 100644 index 5f72143c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md deleted file mode 100644 index b195f1ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.md deleted file mode 100644 index 5cf4f819..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh deleted file mode 100644 index 4e6546b4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 41155c8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md deleted file mode 100644 index 19e7c258..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh deleted file mode 100644 index 634fa9f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_default.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md deleted file mode 100644 index 57c6d9fa..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.md deleted file mode 100644 index 3f45fb25..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.sh deleted file mode 100644 index 297c46fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_multi.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index 9ec3f363..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.md deleted file mode 100644 index e2301a75..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh deleted file mode 100644 index 0adee377..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index e5332f81..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 75a85eb3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index 79ddd915..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index ec72b58f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md deleted file mode 100644 index 6781fea0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 24ec7e5a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 381729f5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md deleted file mode 100644 index 009536b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 42b6b592..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable8.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 04e2e708..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index 47017f8d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 700c48f6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md deleted file mode 100644 index 0cd62c2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.md deleted file mode 100644 index 64bdf8cf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh deleted file mode 100644 index 8a205788..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the condition: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md deleted file mode 100644 index bb7ffe1e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.md deleted file mode 100644 index 0e5f2786..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh deleted file mode 100644 index 5f22d678..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation2.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md deleted file mode 100644 index c32e8825..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.md deleted file mode 100644 index 9c9ff9ac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh deleted file mode 100644 index b688a500..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5hidden_calculation_default_calculation.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ 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) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md deleted file mode 100644 index a8452724..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.md deleted file mode 100644 index 19b3aa83..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh deleted file mode 100644 index efea506a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md deleted file mode 100644 index 9b068281..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.md deleted file mode 100644 index 72472698..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) - - :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh deleted file mode 100644 index 27df2808..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_differ.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) - ┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md deleted file mode 100644 index d1d91485..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.md deleted file mode 100644 index d4007c71..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh deleted file mode 100644 index a4f78070..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md deleted file mode 100644 index 287ee192..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.md deleted file mode 100644 index 9b5b4020..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh deleted file mode 100644 index 0ee860e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ val1 ◀ loaded from rougail-test (⏳ no) -  ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md deleted file mode 100644 index c405e423..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.md deleted file mode 100644 index a4131fe4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.sh deleted file mode 100644 index 43878be7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_multi3.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a second variable: -  ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ (⏳ 1) -  ┗━━ (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 3fe4a8a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.md b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.md deleted file mode 100644 index 7412d0a2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.sh b/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.sh deleted file mode 100644 index 2779b910..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/04_5validators_warnings_all.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_not_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.md b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/05_0multi_uniq.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md deleted file mode 100644 index d6c2e386..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- no -] diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.md b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.md deleted file mode 100644 index 70329de2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh deleted file mode 100644 index 49f35116..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/12_1auto_save_expert.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: no diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md deleted file mode 100644 index 10a88bd3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.md deleted file mode 100644 index 4b50aa75..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh deleted file mode 100644 index 37707cfb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_0redefine_description.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index dd65182a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.md deleted file mode 100644 index 7b7f9ecd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.sh deleted file mode 100644 index 614cad00..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md deleted file mode 100644 index d1f1ccf4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.md deleted file mode 100644 index 178ce451..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh deleted file mode 100644 index 23becc10..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_nonexists.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5exists_redefine.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md deleted file mode 100644 index f759e9a7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.md deleted file mode 100644 index a7111393..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh deleted file mode 100644 index f07415c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_choice.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md deleted file mode 100644 index 848c29b7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.md deleted file mode 100644 index 7243bd52..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh deleted file mode 100644 index 1bd46e83..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index f907f898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.md deleted file mode 100644 index 7aff5616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh deleted file mode 100644 index 86115a8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md deleted file mode 100644 index ca57cd14..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.md deleted file mode 100644 index 57f96de9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh deleted file mode 100644 index 3a5a9f72..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 new description -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md deleted file mode 100644 index 9f143013..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.md deleted file mode 100644 index bb413ada..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh deleted file mode 100644 index d76873b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_help.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md deleted file mode 100644 index 0e8d3f3c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.md deleted file mode 100644 index 5b56c5cd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh deleted file mode 100644 index 1e344fc2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ non) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md deleted file mode 100644 index 7a451ad4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.md deleted file mode 100644 index 9b3b41d4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh deleted file mode 100644 index f95d5c96..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_5test_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md deleted file mode 100644 index b257a746..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.md deleted file mode 100644 index 3680b158..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh deleted file mode 100644 index 95081cf8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6choice_redefine.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f308e3a6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.md deleted file mode 100644 index ca4feef3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh deleted file mode 100644 index 716e4666..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16_6exists_redefine_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 new description - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a second family -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md deleted file mode 100644 index 69e26651..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.md b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.md deleted file mode 100644 index 8e7347ed..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh b/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh deleted file mode 100644 index e572c5de..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/16exists_exists.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.md b/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/17_5redefine_leadership.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md deleted file mode 100644 index fcc4d7fe..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.md deleted file mode 100644 index 05dd4c7c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh deleted file mode 100644 index 4668f151..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_append.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A family -  ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_basic.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md deleted file mode 100644 index a9518531..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.md deleted file mode 100644 index fe4190ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh deleted file mode 100644 index 1f1e3c8b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_expert.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📂 a sub family -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md deleted file mode 100644 index ee5c84a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.md deleted file mode 100644 index d55f9aff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh deleted file mode 100644 index c245712f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0multi_family_order.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a sub family -  ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 23cf1572..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.md deleted file mode 100644 index bd753eb0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh deleted file mode 100644 index ff6184ad..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index 9bf0d70c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md deleted file mode 100644 index 93b860df..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh deleted file mode 100644 index 1905b9c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┣━━ 📓 dynamic: -  ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 56cb8522..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.md deleted file mode 100644 index 0073c1d5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.sh deleted file mode 100644 index 6f7622e7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 my_family -  ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md deleted file mode 100644 index 7818a4f7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.md deleted file mode 100644 index 4351668d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.sh deleted file mode 100644 index f302d635..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_7help_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 the first family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 the second family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md deleted file mode 100644 index 130fb755..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.md b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.md deleted file mode 100644 index 4d6baa86..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh deleted file mode 100644 index ae65e2c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/20_9default_information_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 family -  ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md deleted file mode 100644 index fcb3871a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.md deleted file mode 100644 index a86a61c0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh deleted file mode 100644 index da5651af..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md deleted file mode 100644 index 8c36dd68..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.md deleted file mode 100644 index f9bb12d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :open_file_folder: a family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh deleted file mode 100644 index a5da6e15..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_boolean.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a conditional variable: true ◀ loaded from rougail-test (⏳ false) - ┗━━ 📂 a family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 18e5d369..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f971677c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 709bdc74..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index fdf1f057..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index 7c66dd0e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index 3d860847..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md deleted file mode 100644 index 535acc82..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a family: [+ {} +] diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.md deleted file mode 100644 index a31ae5d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a second conditional variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a family: {} diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh deleted file mode 100644 index 0ce5e7a1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_condition_with_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ 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: {} diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 892a6f62..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index 65358fb2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 3b98238c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 possibly hidden family -  ┗━━ 📂 a subfamily -   ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 5a8d2973..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.md deleted file mode 100644 index 0d688e89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh deleted file mode 100644 index c400e2d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index ea03d0e8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md deleted file mode 100644 index 4b9ada76..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index ccb87621..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index c9a709ab..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.md deleted file mode 100644 index 95ce84c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh deleted file mode 100644 index a44a9537..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/24_7validators_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test -  ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 5a7a870f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.md deleted file mode 100644 index 119748ef..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh deleted file mode 100644 index c804056c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_diff_name.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 951efe61..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md deleted file mode 100644 index 3e4359a0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index c1a9e421..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md deleted file mode 100644 index 6260abf7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.md deleted file mode 100644 index 33e8c616..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: a follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh deleted file mode 100644 index 4798d509..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md deleted file mode 100644 index 5601ba9f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md deleted file mode 100644 index a464bc15..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: leader) - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: the follower2: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh deleted file mode 100644 index e56c937e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_submulti_calculation.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test (⏳ leader) -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower2: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: -   ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower2: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 22902558..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.md deleted file mode 100644 index be502540..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh deleted file mode 100644 index d0145bc3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 155ae333..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.md deleted file mode 100644 index 4b9c3a59..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.sh deleted file mode 100644 index 9232a71b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 49a94371..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md deleted file mode 100644 index 7bb2ca00..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh deleted file mode 100644 index caf94ed4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 general - ┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) - ┗━━ 📂 general1 -  ┗━━ 📂 leader -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 leader -   ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 leader -    ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md deleted file mode 100644 index 5d9de3fb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.md deleted file mode 100644 index 8d0e32b4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.sh deleted file mode 100644 index c8acc755..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_0leadership_reduce.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -   ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index dee2a6d3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.md deleted file mode 100644 index 814a7898..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh deleted file mode 100644 index 92836c84..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_1leadership_append_follower.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test -  ┣━━ 📂 the leader -  ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test -  ┗━━ 📂 the leader -   ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -   ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -   ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 2e38b63c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md deleted file mode 100644 index 4d9769c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh deleted file mode 100644 index e2335e1d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md deleted file mode 100644 index ffb5fec5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.md deleted file mode 100644 index cbdf8529..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh deleted file mode 100644 index dc0c00f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_calculation_param_index.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -   ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md deleted file mode 100644 index 7dd2a13a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: [- string1 -] ← loaded from rougail-test - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: [- string2 -] ← loaded from rougail-test - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a first follower: [- string3 -] ← loaded from rougail-test - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.md deleted file mode 100644 index 77555235..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a first follower: string1 ← loaded from rougail-test - - :notebook: a second follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a first follower: string2 ← loaded from rougail-test - - :notebook: a second follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a first follower: string3 ← loaded from rougail-test - - :notebook: a second follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh deleted file mode 100644 index 5a551251..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_2leadership_leader_calculation.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ val1) -  ┃ ┣━━ 📓 a first follower: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┣━━ 📓 a first follower: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a first follower: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 5b45dea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index bce4e4f2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index a1f2c775..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 The first follower: -  ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 The second follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 The first follower: -   ┃ ┣━━ string1 ◀ loaded from rougail-test -   ┃ ┣━━ string2 ◀ loaded from rougail-test -   ┃ ┗━━ string3 ◀ loaded from rougail-test -   ┗━━ 📓 The second follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md deleted file mode 100644 index 2fd2afac..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.md deleted file mode 100644 index 58513928..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) - - :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh deleted file mode 100644 index e11ff294..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 a first multi variable: - ┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) - ┃ ┗━━ (⏳ false) - ┗━━ 📓 a second multi variable: -  ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md deleted file mode 100644 index e5a29bfc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: [- true -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.md deleted file mode 100644 index eb03c244..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :notebook: a second variable: true ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh deleted file mode 100644 index 10bcd049..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_boolean_return_none.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📓 a second variable: true ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md deleted file mode 100644 index fe13f94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.md deleted file mode 100644 index b5e804c8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) - - :notebook: first integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :notebook: second integer variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 4) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh deleted file mode 100644 index 82566a24..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_integer.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) - ┣━━ 📓 first integer variable: 1 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📓 second integer variable: 1 ◀ loaded from rougail-test (⏳ 4) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index dc2ee9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.md deleted file mode 100644 index 61402ea8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh deleted file mode 100644 index 2fc25998..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a first variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index f5500bde..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e04f7b41..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 00792e71..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a family -  ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index 1e731359..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 75031777..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index a75ed8c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 first family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 second family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index af861c6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index 86ac86a3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index 6576e5bc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┣━━ string2 ◀ loaded from rougail-test -  ┃  ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -    ┣━━ string2 ◀ loaded from rougail-test -    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 430a2447..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index 6f1d212e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 6dbe6cff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index e7cde94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index bb85f044..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 239aef89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ string2 ◀ loaded from rougail-test -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 2e14eb73..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test - - :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index 10272605..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test - - :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index a4b48bd9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 leader - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 leader - ┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 leader - ┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test - ┗━━ 📓 variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 78e937f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 61a6efb1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 65296704..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index b4b858ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index 7ce44ede..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index ae080aaa..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index a8c38ae8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 28bda2e3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index f18de231..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) - ┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📓 a calculated variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 900df4e4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.md deleted file mode 100644 index 3e994562..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh deleted file mode 100644 index a9cfe4d2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a calculated variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -  ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -   ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 950cd91e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 0f41960b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,29 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index 153ef6b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,26 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 36879bba..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index b92a2b55..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 6526a49a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a leadership - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a leader - ┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📂 a leader - ┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test - ┗━━ 📂 a second leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -  ┃ ┗━━ 📓 a follower: -  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -  ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: -    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -    ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -    ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md deleted file mode 100644 index 47b922dd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.md b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.md deleted file mode 100644 index 624251f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh deleted file mode 100644 index 05a60f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/41_0choice_leader.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 The leadership -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test -  ┣━━ 📂 The leader -  ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test -  ┗━━ 📂 The leader -   ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md deleted file mode 100644 index 7b5e2fcd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.md deleted file mode 100644 index f3c31f4a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh deleted file mode 100644 index 7e983835..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index c94e7f8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index 788a4221..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index ed8c275a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 aleader -  ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) -  ┣━━ 📂 aleader -  ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📂 aleader -   ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 0e3f57ca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md deleted file mode 100644 index d253bc6a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 3ab08df7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 164950d9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index 10f5dc08..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index 1e806099..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index 23d88b47..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index bd555e36..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index 55f68461..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md deleted file mode 100644 index ece30473..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.md b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.md deleted file mode 100644 index 8f91e324..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: leader - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh b/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh deleted file mode 100644 index 7d40319d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/44_9calculated_default_leadership_leader.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 leader -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) -  ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) -  ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md deleted file mode 100644 index b6381c78..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.md deleted file mode 100644 index 0bff1880..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh deleted file mode 100644 index 7ce61e50..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md deleted file mode 100644 index 61798b1c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.md deleted file mode 100644 index 812ccfa3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: Dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh deleted file mode 100644 index 83a49c2e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 Dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md deleted file mode 100644 index 0c649ccb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.md deleted file mode 100644 index 7453d466..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh deleted file mode 100644 index 3aaa13d2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md deleted file mode 100644 index 10cab53f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md deleted file mode 100644 index ad92b1f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dyn variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dyn variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh deleted file mode 100644 index ef631cf8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_0_type_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dyn variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index d57efc09..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.md deleted file mode 100644 index 4b2ea164..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh deleted file mode 100644 index 23493051..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index 0aeb0d2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.md deleted file mode 100644 index 56f388ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh deleted file mode 100644 index 6d7c1315..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index 6ba3e9a5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index 2a9c0342..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index debc28e9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md deleted file mode 100644 index 9d322e4a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md deleted file mode 100644 index d0aab92f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh deleted file mode 100644 index 833a7c15..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_integer_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test - ┃ ┗━━ 2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md deleted file mode 100644 index 1d7565d1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.md deleted file mode 100644 index 622ee06e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - 2 ← loaded from rougail-test (:hourglass_flowing_sand: 2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh deleted file mode 100644 index 3c9f31d0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_jinja_number.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 1) - ┃ ┗━━ 2 ◀ loaded from rougail-test (⏳ 2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index 0d314879..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.md deleted file mode 100644 index b6183bcc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh deleted file mode 100644 index 12e127fa..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index 91335f10..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 2b3db0c4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index f165eac7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index 74f91973..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md deleted file mode 100644 index 686a11a6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index 640e9ba8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index f1cdce30..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.md deleted file mode 100644 index 5d503845..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh deleted file mode 100644 index f591169c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_static.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 497b06c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.md deleted file mode 100644 index 82e84e64..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh deleted file mode 100644 index e69443c9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_test.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 221c10b1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md deleted file mode 100644 index 31eb49da..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh deleted file mode 100644 index 06bdcb35..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) - ┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 8366d36a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 79ba7f5a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 3ff9cd5c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 0a702637..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 0216a150..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index 981e8b8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index 6528840b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index f43ccdf5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index 8b1c8aba..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index 15909e16..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 3eca49f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index e1c15e6c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md deleted file mode 100644 index df40ada6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.md deleted file mode 100644 index c75b0765..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh deleted file mode 100644 index 0f32dc94..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_0family_mode.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a family -  ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index 5b1efe4d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.md deleted file mode 100644 index 42d8df80..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh deleted file mode 100644 index 7b3a3fa4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index d217053c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 14293c23..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 513562d1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index da38c2cb..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index bf67e7b0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a73b640b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 457f4cf0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index 8626342b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index d1912bca..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family inside dynamic family - ┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 0e15a617..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 9a306743..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index 367604d7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a family - ┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index b046102c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md deleted file mode 100644 index f123acc0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4846c161..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index bd8bd966..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index 8b811f33..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index b25f118c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffx variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md deleted file mode 100644 index a17f1c24..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.md deleted file mode 100644 index 288921c7..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh deleted file mode 100644 index d7161592..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md deleted file mode 100644 index 832d9038..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.md deleted file mode 100644 index 784ffa53..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh deleted file mode 100644 index 80a96b69..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc2_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index b24fdce9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md deleted file mode 100644 index a4cfbfee..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 80b27cbd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index b19036b2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 11d8dbaa..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 0ff15815..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 85400d1b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index d4d2b552..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 859744d4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index b5d6d80a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: [+ {} +] - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index 6dc0535a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: dynval1: {} - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index 55dd8df3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 dynval1: {} - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md deleted file mode 100644 index 0d3d89f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md deleted file mode 100644 index 150cb650..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh deleted file mode 100644 index 97bed2b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md deleted file mode 100644 index ecdca7b3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md deleted file mode 100644 index 186a8e2d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh deleted file mode 100644 index 1937ad8e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_2.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┗━━ val1 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md deleted file mode 100644 index 614f2aa2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md deleted file mode 100644 index 93006110..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh deleted file mode 100644 index ee2d5b37..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_empty_3.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 dynval2 -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md deleted file mode 100644 index 3ce63451..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md deleted file mode 100644 index 2ab152f8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh deleted file mode 100644 index e699c860..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md deleted file mode 100644 index 6ab9e5f4..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md deleted file mode 100644 index f02fde5c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh deleted file mode 100644 index 654015b9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_boolean.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md deleted file mode 100644 index fb9a39d5..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: [+ {} +] - - :notebook: dynval2: [+ {} +] - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md deleted file mode 100644 index 7d213414..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: dynval1: {} - - :notebook: dynval2: {} - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: a second value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh deleted file mode 100644 index 1e9c580b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_hidden_multi.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Default value │ -│ Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📓 dynval1: {} - ┣━━ 📓 dynval2: {} - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ a value) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ a second value) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 4653c375..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index acc506d8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index 731e7dfc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index 7b10d58b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 5131cf37..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index e294bd6c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 A dynamic family -  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index a48f6c6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md deleted file mode 100644 index dad59caf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 7e934e3b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 576afbec..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index 41e2ddef..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index f587371c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic famify for val2 -  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index a69eb639..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 58e5de03..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index f47218ae..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index b7deaf2b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index f407b4f0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 52a90ed3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 dynval1 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index 417396b0..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index c452a18a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index c539e478..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 a family -   ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md deleted file mode 100644 index 9c1b208c..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.md deleted file mode 100644 index b48f8a48..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh deleted file mode 100644 index 66f6f496..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md deleted file mode 100644 index 767a8fbc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.gitlab.md +++ /dev/null @@ -1,33 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - [- val3 -] ← loaded from rougail-test - - [- val4 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md deleted file mode 100644 index 534bac6b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.md +++ /dev/null @@ -1,34 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - val3 ← loaded from rougail-test - - val4 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val3) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: a variable 1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - :notebook: a variable 2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 3: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a variable 4: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh deleted file mode 100644 index 5ec34da1..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_unknown_suffix_empty.sh +++ /dev/null @@ -1,31 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┣━━ val2 ◀ loaded from rougail-test - ┃ ┣━━ val3 ◀ loaded from rougail-test - ┃ ┗━━ val4 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val2) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val3) - ┃ ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 a variable 1: string1 ◀ loaded from rougail-test (⏳ val4) -  ┣━━ 📓 a variable 2: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 a variable 3: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 a variable 4: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md deleted file mode 100644 index d1063872..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.md deleted file mode 100644 index 892a3349..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh deleted file mode 100644 index 91541796..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md deleted file mode 100644 index 6b3a9c36..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md deleted file mode 100644 index b87e5134..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh deleted file mode 100644 index 242060a3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside2_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a variable: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_1_0.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md deleted file mode 100644 index a317a540..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md deleted file mode 100644 index 258e373b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh deleted file mode 100644 index d458e9ff..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md deleted file mode 100644 index ce194f2f..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md deleted file mode 100644 index c9ecbb89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh deleted file mode 100644 index a8642011..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_jinja_empty.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md deleted file mode 100644 index d38c3fbf..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md deleted file mode 100644 index ebe7fe59..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh deleted file mode 100644 index 9d75028a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md deleted file mode 100644 index 9668b2c2..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md deleted file mode 100644 index 9b987a89..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a sub dynamic family - - :notebook: a variable inside a sub dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh deleted file mode 100644 index 1489f2ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_sub_suffix_empty.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📂 a sub dynamic family - ┃ ┃ ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ 📂 a sub dynamic family - ┃  ┗━━ 📓 a variable inside a sub dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index 1cf48b29..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 8314bdf3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 411a0f48..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 2b591268..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index 504f8767..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index 606d6575..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 asuffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md deleted file mode 100644 index 1f4a8f70..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.md deleted file mode 100644 index 14a88795..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh deleted file mode 100644 index 83183863..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md deleted file mode 100644 index e9710619..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.md deleted file mode 100644 index bb9844f9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a dynamic family - - :notebook: value is suffix: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: value is first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is relative first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: value is first variable of val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh deleted file mode 100644 index 73056139..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_inside_empty.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) - ┗━━ 📂 a dynamic family -  ┣━━ 📓 value is suffix: string1 ◀ loaded from rougail-test (⏳ val2) -  ┣━━ 📓 value is first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ 📓 value is relative first variable: string1 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ 📓 value is first variable of val1: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index 97dc6347..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.md deleted file mode 100644 index dbb025b8..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh deleted file mode 100644 index ddcef224..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 5921e7e9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index f67f8984..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index 25c908c6..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📂 a leadership - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┃  ┣━━ 📂 a leader - ┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┃  ┗━━ 📂 a leader - ┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test - ┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test - ┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📂 a leadership -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -   ┣━━ 📂 a leader -   ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -   ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -   ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -   ┗━━ 📂 a leader -    ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -    ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -    ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md deleted file mode 100644 index f618c9ce..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md deleted file mode 100644 index 920f0d14..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh deleted file mode 100644 index eb457413..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md deleted file mode 100644 index 2b83e962..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md deleted file mode 100644 index a2957910..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh deleted file mode 100644 index ec82fc67..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_1_0_2.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📂 A dynamic family - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 A dynamic family - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 A dynamic family -  ┣━━ 📂 A dynamic family -  ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -  ┗━━ 📂 A dynamic family -   ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md deleted file mode 100644 index 92eb1e62..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.gitlab.md +++ /dev/null @@ -1,35 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- tval1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - [- tval2 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md deleted file mode 100644 index 11712f71..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-tval2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - tval1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - tval2 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: tval2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh deleted file mode 100644 index 10be0008..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty.sh +++ /dev/null @@ -1,33 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test - ┃ ┗━━ val2 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval1) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-tval2) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ tval1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┗━━ tval2 ◀ loaded from rougail-test (⏳ tval2) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval1) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ tval2) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-tval2) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md deleted file mode 100644 index c318ac7a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.gitlab.md +++ /dev/null @@ -1,45 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md deleted file mode 100644 index 4efab94e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.md +++ /dev/null @@ -1,46 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1-string3) - - :open_file_folder: A dynamic family - - :notebook: A dynamic variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string1) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string2) - - :open_file_folder: a Second dynamic variable - - :notebook: A variable dynamic: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: identifier from first family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :notebook: merge identifiers: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh deleted file mode 100644 index e8934279..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_sub_dynamic_empty2.sh +++ /dev/null @@ -1,43 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A identifier variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 A dynamic family - ┃ ┣━━ 📓 A dynamic variable: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string1) - ┃ ┣━━ 📂 a Second dynamic variable - ┃ ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) - ┃ ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string2) - ┃ ┗━━ 📂 a Second dynamic variable - ┃  ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) - ┃  ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val1) - ┃  ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val1-string3) - ┗━━ 📂 A dynamic family -  ┣━━ 📓 A dynamic variable: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string1) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string1) -  ┣━━ 📂 a Second dynamic variable -  ┃ ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string2) -  ┃ ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -  ┃ ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string2) -  ┗━━ 📂 a Second dynamic variable -   ┣━━ 📓 A variable dynamic: string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ 📓 identifier from first family: string1 ◀ loaded from rougail-test (⏳ val2) -   ┗━━ 📓 merge identifiers: string1 ◀ loaded from rougail-test (⏳ val2-string3) diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md deleted file mode 100644 index 5881974e..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.gitlab.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A variable calculated: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md deleted file mode 100644 index bfab106d..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: dynval1 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A variable calculated: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh deleted file mode 100644 index 069b22fd..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_6family_dynamic_suffix_auto_multi2.sh +++ /dev/null @@ -1,23 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 A suffix variable: - ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 dynval1 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 dynval2 - ┃ ┣━━ 📂 dynval1 - ┃ ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📂 dynval2 - ┃  ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A variable calculated: -  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md deleted file mode 100644 index 02e25398..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.md deleted file mode 100644 index 5a1a6f63..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: extra - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh deleted file mode 100644 index 60476413..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📓 a variable: -┃  ┗━━ a ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 extra - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md deleted file mode 100644 index f8854db9..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.md deleted file mode 100644 index 175907c3..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: général - - :notebook: No change: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: extra - - :notebook: a variable: - - a ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: dyn_a - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh deleted file mode 100644 index bf02dc7b..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9extra_dynamic_extra.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 Rougail -┃ ┗━━ 📂 général -┃  ┗━━ 📓 No change: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃   ┣━━ string2 ◀ loaded from rougail-test -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 extra - ┣━━ 📓 a variable: - ┃ ┗━━ a ◀ loaded from rougail-test (⏳ a) - ┗━━ 📂 dyn_a -  ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 540a6f98..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md deleted file mode 100644 index 92fd1e0a..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: Rougail - - :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test - - :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 4f343e74..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) - ┣━━ 📂 a dynamic family - ┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a dynamic family -  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index be1f1708..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.md b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.md deleted file mode 100644 index 821b19dc..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: Rougail - - :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh deleted file mode 100644 index 211ebe33..00000000 --- a/tests/results/test_namespace_read_write_mandatory_secrets/68_0family_leadership_mode.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 Rougail - ┗━━ 📂 A leadership -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 A leader -  ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 A leader -   ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/16_6exists_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory/16_6exists_family.gitlab.md rename to tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory/16_6exists_family.md b/tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory/16_6exists_family.md rename to tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory/16_6exists_family.sh b/tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory/16_6exists_family.sh rename to tests/results/test_namespace_read_write_secrets/04_1jinja_and_hidden.sh diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable10.sh rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory/20_0empty_family.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/20_0empty_family.gitlab.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/20_0empty_family.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/20_0empty_family.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/20_0empty_family.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/20_0empty_family.sh rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.gitlab.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_namespace_mandatory/04_5disabled_calculation_variable_multi.sh rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.md b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.md rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_namespace_read_write_mandatory/04_5disabled_calculation_variable2.sh rename to tests/results/test_namespace_read_write_secrets/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md index b24fdce9..14c969da 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md @@ -6,12 +6,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.md index a4cfbfee..184f0b33 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.md @@ -7,12 +7,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test + - :notebook: a new variable: string1 ← loaded from rougail-test + - :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.sh index 80b27cbd..d0a58991 100644 --- a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_description.sh @@ -4,12 +4,12 @@ ╰──────────────────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test + ┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test + ┗━━ 📓 a new variable:   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..ad5592be --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,16 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..d5e6ecf8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,17 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..7558ebbc --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,14 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) + ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..0335b7e8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,25 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..0e1a8310 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,26 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..74c2a248 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,23 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📓 A variable calculated: +  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) +  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..6d27958f --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,37 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.md b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..359acc4c --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.md @@ -0,0 +1,38 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.sh b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..30808edb --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets/60_6family_subdynamic_inside.sh @@ -0,0 +1,35 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┗━━ string3 ◀ loaded from rougail-test + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃   ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┗━━ string3 ◀ loaded from rougail-test +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +   ┗━━ 📓 A variable calculated: +    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +    ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/20_0family_underscore.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory/20_0family_underscore.gitlab.md rename to tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory/20_0family_underscore.md b/tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory/20_0family_underscore.md rename to tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory/20_0family_underscore.sh b/tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory/20_0family_underscore.sh rename to tests/results/test_namespace_read_write_secrets_errors/04_1jinja_and_hidden.sh diff --git a/tests/results/test_mandatory/20_1empty_subfamily.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.gitlab.md similarity index 100% rename from tests/results/test_mandatory/20_1empty_subfamily.gitlab.md rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.gitlab.md diff --git a/tests/results/test_mandatory/20_1empty_subfamily.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.md similarity index 100% rename from tests/results/test_mandatory/20_1empty_subfamily.md rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.md diff --git a/tests/results/test_mandatory/20_1empty_subfamily.sh b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.sh similarity index 100% rename from tests/results/test_mandatory/20_1empty_subfamily.sh rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable12.sh diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md new file mode 100644 index 00000000..9d990025 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ true +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md new file mode 100644 index 00000000..88c909e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: true diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh new file mode 100644 index 00000000..c43652c1 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/24_family_disabled_var_hidden.gitlab.md rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/24_family_disabled_var_hidden.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/24_family_disabled_var_hidden.md rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/24_family_disabled_var_hidden.sh b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/24_family_disabled_var_hidden.sh rename to tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md new file mode 100644 index 00000000..14cef7dc --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md @@ -0,0 +1,9 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ false +] + - :notebook: a variable: [+ disabled +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md new file mode 100644 index 00000000..af186f56 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md @@ -0,0 +1,10 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: false + - :notebook: a variable: disabled diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh new file mode 100644 index 00000000..ef083242 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh @@ -0,0 +1,7 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 a condition: false + ┗━━ 📓 a variable: disabled diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md new file mode 100644 index 00000000..9d990025 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: [+ true +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md new file mode 100644 index 00000000..88c909e7 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: a condition: true diff --git a/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh new file mode 100644 index 00000000..c43652c1 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 a condition: true diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md index d4a2db42..a7040967 100644 --- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md @@ -5,11 +5,11 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [+ null +] - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [+ null +] - - :notebook: A new variable: [+ null +] - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [+ null +] + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [+ null +] + - :notebook: a new variable: [+ null +] + - :notebook: a new variable: - [+ null +] - [+ null +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.md index ea46456d..ec4173cc 100644 --- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.md @@ -6,11 +6,11 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: null - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: null - - :notebook: A new variable: null - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: null + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: null + - :notebook: a new variable: null + - :notebook: a new variable: - null - null diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.sh index 94b89f97..37183bef 100644 --- a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_description.sh @@ -3,11 +3,11 @@ ╰────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: null - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: null - ┣━━ 📓 A new variable: null - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: null + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: null + ┣━━ 📓 a new variable: null + ┗━━ 📓 a new variable:   ┣━━ null   ┗━━ null diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..4b551479 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,15 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ val1 +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ val2 +] + - :notebook: A variable calculated: [+ val1 +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..c6fa7fbd --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,16 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: val1 + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: val2 + - :notebook: A variable calculated: val1 diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..13192a5a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,13 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: val2 + ┗━━ 📓 A variable calculated: val1 diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..2e3b0ec5 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,18 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [+ val1 +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [+ val2 +] + - :notebook: A variable calculated: + - [+ val1 +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..fe8615ab --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,19 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - val1 + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - val2 + - :notebook: A variable calculated: + - val1 diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..b38ed037 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,16 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┗━━ val1 + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┗━━ val2 + ┗━━ 📓 A variable calculated: +  ┗━━ val1 diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..cc206b3a --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,32 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.md b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..55ac64c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.md @@ -0,0 +1,33 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 + - val2 + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null diff --git a/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.sh b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b62960c8 --- /dev/null +++ b/tests/results/test_namespace_read_write_secrets_errors/60_6family_subdynamic_inside.sh @@ -0,0 +1,30 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 + ┃ ┗━━ val2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: null + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ null + ┃ ┃  ┗━━ null + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: null + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ null + ┃   ┗━━ null + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: null +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ null +  ┃  ┗━━ null +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: null +   ┗━━ 📓 A variable calculated: +    ┣━━ null +    ┗━━ null diff --git a/tests/results/test_namespace_secrets/04_1jinja_and_hidden.gitlab.md b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.gitlab.md new file mode 100644 index 00000000..ba41b943 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.gitlab.md @@ -0,0 +1,9 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] + +Variables: +- :open_file_folder: Rougail + - :notebook: [+ A first variable +]: [+ true +] diff --git a/tests/results/test_namespace_secrets/04_1jinja_and_hidden.md b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.md new file mode 100644 index 00000000..246581f2 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.md @@ -0,0 +1,10 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value + +Variables: +- :open_file_folder: Rougail + - :notebook: A first variable: true diff --git a/tests/results/test_namespace_secrets/04_1jinja_and_hidden.sh b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.sh new file mode 100644 index 00000000..902e7752 --- /dev/null +++ b/tests/results/test_namespace_secrets/04_1jinja_and_hidden.sh @@ -0,0 +1,7 @@ +╭────────────── Caption ──────────────╮ +│ Variable Default value │ +│ Unmodifiable variable │ +╰─────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┗━━ 📓 A first variable: true diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable10.sh rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory/40_0leadership_empty.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory/40_0leadership_empty.gitlab.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory/40_0leadership_empty.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory/40_0leadership_empty.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory/40_0leadership_empty.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory/40_0leadership_empty.sh rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_namespace_mandatory_secrets/04_5disabled_calculation_variable.sh rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.md b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.md rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_namespace_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh rename to tests/results/test_namespace_secrets/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md index b24fdce9..14c969da 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.gitlab.md @@ -6,12 +6,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: [- string1 -] ← loaded from rougail-test + - :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.md index a4cfbfee..184f0b33 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.md +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.md @@ -7,12 +7,12 @@ Variables: - :open_file_folder: Rougail - - :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test - - :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test - - :notebook: A new variable: + - :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test + - :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test + - :notebook: a new variable: string1 ← loaded from rougail-test + - :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.sh index 80b27cbd..d0a58991 100644 --- a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_description.sh @@ -4,12 +4,12 @@ ╰──────────────────────────────────────╯ Variables: ┗━━ 📂 Rougail - ┣━━ 📂 A dynamic famify for val1 - ┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test - ┣━━ 📂 A dynamic famify for val2 - ┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test - ┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: + ┣━━ 📂 a dynamic famify for val1 + ┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test + ┣━━ 📂 a dynamic famify for val2 + ┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test + ┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test + ┗━━ 📓 a new variable:   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..6e7d23bd --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,19 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: [+ A suffix variable2 +]: [+ val1 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..d0db6d41 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,20 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A suffix variable2: val1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..a50ce5d5 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,16 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📓 A suffix variable2: val1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) + ┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..90273d14 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,28 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: [+ A suffix variable2 +]: [+ val1 +] + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..9f05e7d3 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,29 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :notebook: A suffix variable2: val1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..522a7e92 --- /dev/null +++ b/tests/results/test_namespace_secrets/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,25 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📓 A suffix variable2: val1 + ┣━━ 📂 dynval1 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┣━━ 📂 dynval2 + ┃ ┗━━ 📓 A dynamic variable: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) + ┃  ┣━━ string2 ◀ loaded from rougail-test + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📓 A variable calculated: +  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) +  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..6d27958f --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,37 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.md b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..359acc4c --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.md @@ -0,0 +1,38 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :open_file_folder: Rougail + - :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.sh b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..30808edb --- /dev/null +++ b/tests/results/test_namespace_secrets/60_6family_subdynamic_inside.sh @@ -0,0 +1,35 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┗━━ 📂 Rougail + ┣━━ 📓 A suffix variable: + ┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) + ┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) + ┣━━ 📂 dynval1 + ┃ ┣━━ 📂 dynval1 + ┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┃ ┗━━ 📓 A variable calculated: + ┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃ ┃  ┗━━ string3 ◀ loaded from rougail-test + ┃ ┗━━ 📂 dynval2 + ┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃  ┗━━ 📓 A variable calculated: + ┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃   ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📂 dynval1 +  ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┃ ┗━━ 📓 A variable calculated: +  ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +  ┃  ┗━━ string3 ◀ loaded from rougail-test +  ┗━━ 📂 dynval2 +   ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +   ┗━━ 📓 A variable calculated: +    ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +    ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +    ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory/60_0family_empty.gitlab.md b/tests/results/test_read_write/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory/60_0family_empty.gitlab.md rename to tests/results/test_read_write/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory/60_0family_empty.md b/tests/results/test_read_write/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory/60_0family_empty.md rename to tests/results/test_read_write/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory/60_0family_empty.sh b/tests/results/test_read_write/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory/60_0family_empty.sh rename to tests/results/test_read_write/04_1jinja_and_hidden.sh diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.sh b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable10.sh rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory_secrets/00_0empty.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0empty.gitlab.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory_secrets/00_0empty.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0empty.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory_secrets/00_0empty.sh b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory_secrets/00_0empty.sh rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable7.gitlab.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable7.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable7.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable7.sh b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable7.sh rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.md b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.md rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable2.sh rename to tests/results/test_read_write/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md index 936caa53..3918de53 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_read_write/60_5family_dynamic_calc_description.gitlab.md @@ -5,12 +5,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_description.md b/tests/results/test_read_write/60_5family_dynamic_calc_description.md index 3a12c9e1..41f3fc4b 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_description.md +++ b/tests/results/test_read_write/60_5family_dynamic_calc_description.md @@ -6,12 +6,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test +- :notebook: a new variable: string1 ← loaded from rougail-test +- :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write/60_5family_dynamic_calc_description.sh index 526482f2..0b70ba77 100644 --- a/tests/results/test_read_write/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_read_write/60_5family_dynamic_calc_description.sh @@ -3,12 +3,12 @@ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test +┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test +┗━━ 📓 a new variable:  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..9785f727 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,15 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier.md b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..6b902b98 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,16 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier.sh b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..c9ac8655 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,13 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) +┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..ca2253f8 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,24 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..5d49be50 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,25 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..e0e4b181 --- /dev/null +++ b/tests/results/test_read_write/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,22 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📓 A variable calculated: + ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) + ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_read_write/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..954bc32f --- /dev/null +++ b/tests/results/test_read_write/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,36 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write/60_6family_subdynamic_inside.md b/tests/results/test_read_write/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..13150224 --- /dev/null +++ b/tests/results/test_read_write/60_6family_subdynamic_inside.md @@ -0,0 +1,37 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write/60_6family_subdynamic_inside.sh b/tests/results/test_read_write/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b96e0c65 --- /dev/null +++ b/tests/results/test_read_write/60_6family_subdynamic_inside.sh @@ -0,0 +1,34 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┗━━ string3 ◀ loaded from rougail-test +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃   ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┗━━ 📓 A variable calculated: +   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_0no_variable.gitlab.md b/tests/results/test_read_write_errors/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable.gitlab.md rename to tests/results/test_read_write_errors/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable.md b/tests/results/test_read_write_errors/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable.md rename to tests/results/test_read_write_errors/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable.sh b/tests/results/test_read_write_errors/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable.sh rename to tests/results/test_read_write_errors/04_1jinja_and_hidden.sh diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md new file mode 100644 index 00000000..d1e79ac3 --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ true +] diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.md new file mode 100644 index 00000000..d34a45df --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: true diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.sh new file mode 100644 index 00000000..b234b94b --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive.sh @@ -0,0 +1,5 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_default_version.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_default_version.gitlab.md rename to tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_default_version.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_default_version.md rename to tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_default_version.sh b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_default_version.sh rename to tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md new file mode 100644 index 00000000..03ff2ead --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ false +] +- :notebook: a variable: [+ disabled +] diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.md new file mode 100644 index 00000000..539623b1 --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: false +- :notebook: a variable: disabled diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh new file mode 100644 index 00000000..e62bd9fc --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_3.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 a condition: false +┗━━ 📓 a variable: disabled diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md new file mode 100644 index 00000000..d1e79ac3 --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ true +] diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.md new file mode 100644 index 00000000..d34a45df --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: true diff --git a/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh new file mode 100644 index 00000000..b234b94b --- /dev/null +++ b/tests/results/test_read_write_errors/04_5disabled_calculation_variable_transitive_4.sh @@ -0,0 +1,5 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📓 a condition: true diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md index 6f392400..1d6257dd 100644 --- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.gitlab.md @@ -4,11 +4,11 @@ > - [+ Default value +] Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [+ null +] -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [+ null +] -- :notebook: A new variable: [+ null +] -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [+ null +] +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [+ null +] +- :notebook: a new variable: [+ null +] +- :notebook: a new variable: - [+ null +] - [+ null +] diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.md index 9dbd8178..1629ed8a 100644 --- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.md +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.md @@ -5,11 +5,11 @@ > - Default value Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: null -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: null -- :notebook: A new variable: null -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: null +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: null +- :notebook: a new variable: null +- :notebook: a new variable: - null - null diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.sh index 608b6add..b6cea500 100644 --- a/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_description.sh @@ -2,11 +2,11 @@ │ Variable Default value │ ╰────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: null -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: null -┣━━ 📓 A new variable: null -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: null +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: null +┣━━ 📓 a new variable: null +┗━━ 📓 a new variable:  ┣━━ null  ┗━━ null diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..208ab900 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,14 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ val1 +] +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ val2 +] +- :notebook: A variable calculated: [+ val1 +] diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..cad5d821 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,15 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: val1 +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: val2 +- :notebook: A variable calculated: val1 diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.sh b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..4e8d6634 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,12 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: val2 +┗━━ 📓 A variable calculated: val1 diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..3233b887 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,17 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [+ val1 +] +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [+ val2 +] +- :notebook: A variable calculated: + - [+ val1 +] diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..e31f6287 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,18 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - val1 +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - val2 +- :notebook: A variable calculated: + - val1 diff --git a/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..d034cc62 --- /dev/null +++ b/tests/results/test_read_write_errors/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,15 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┗━━ val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┗━━ val2 +┗━━ 📓 A variable calculated: + ┗━━ val1 diff --git a/tests/results/test_read_write_errors/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..7645b2a7 --- /dev/null +++ b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,31 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] diff --git a/tests/results/test_read_write_errors/60_6family_subdynamic_inside.md b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..437db0ae --- /dev/null +++ b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.md @@ -0,0 +1,32 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null diff --git a/tests/results/test_read_write_errors/60_6family_subdynamic_inside.sh b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..7baf0c1a --- /dev/null +++ b/tests/results/test_read_write_errors/60_6family_subdynamic_inside.sh @@ -0,0 +1,29 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: null +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ null +┃ ┃  ┗━━ null +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: null +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ null +┃   ┗━━ null +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: null + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ null + ┃  ┗━━ null + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: null +  ┗━━ 📓 A variable calculated: +   ┣━━ null +   ┗━━ null diff --git a/tests/results/test_read_write_mandatory/00_0empty.gitlab.md b/tests/results/test_read_write_mandatory/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0empty.md b/tests/results/test_read_write_mandatory/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0empty.sh b/tests/results/test_read_write_mandatory/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable.md b/tests/results/test_read_write_mandatory/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable.sh b/tests/results/test_read_write_mandatory/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_default_version.gitlab.md b/tests/results/test_read_write_mandatory/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_default_version.md b/tests/results/test_read_write_mandatory/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_default_version.sh b/tests/results/test_read_write_mandatory/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.gitlab.md b/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.md b/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.sh b/tests/results/test_read_write_mandatory/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md b/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_0version_underscore.md b/tests/results/test_read_write_mandatory/00_0version_underscore.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/00_0version_underscore.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_0version_underscore.sh b/tests/results/test_read_write_mandatory/00_0version_underscore.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/00_0version_underscore.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md deleted file mode 100644 index 1b86c63e..00000000 --- a/tests/results/test_read_write_mandatory/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_1empty_variable.md b/tests/results/test_read_write_mandatory/00_1empty_variable.md deleted file mode 100644 index 8268a71a..00000000 --- a/tests/results/test_read_write_mandatory/00_1empty_variable.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_1empty_variable.sh b/tests/results/test_read_write_mandatory/00_1empty_variable.sh deleted file mode 100644 index b0eed8c1..00000000 --- a/tests/results/test_read_write_mandatory/00_1empty_variable.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md deleted file mode 100644 index f92d0ee5..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated.md b/tests/results/test_read_write_mandatory/00_2default_calculated.md deleted file mode 100644 index 48a68168..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated.sh b/tests/results/test_read_write_mandatory/00_2default_calculated.sh deleted file mode 100644 index 6768e633..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index 01c66533..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.md b/tests/results/test_read_write_mandatory/00_2default_calculated_multi.md deleted file mode 100644 index b7756e16..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_multi.sh deleted file mode 100644 index 9d91c1da..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 012cc0b3..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.md b/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.md deleted file mode 100644 index 02edde27..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 773f5b63..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ a_value) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_variable.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index 236f5765..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.md deleted file mode 100644 index a52ab165..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.sh deleted file mode 100644 index d1dd8bbd..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 024f26fa..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 699fa959..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 404769d9..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.md b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_read_write_mandatory/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md deleted file mode 100644 index b9bd4cd9..00000000 --- a/tests/results/test_read_write_mandatory/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_4load_subfolder.md b/tests/results/test_read_write_mandatory/00_4load_subfolder.md deleted file mode 100644 index 659da021..00000000 --- a/tests/results/test_read_write_mandatory/00_4load_subfolder.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_4load_subfolder.sh b/tests/results/test_read_write_mandatory/00_4load_subfolder.sh deleted file mode 100644 index 83e10216..00000000 --- a/tests/results/test_read_write_mandatory/00_4load_subfolder.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md b/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md deleted file mode 100644 index a3648ea1..00000000 --- a/tests/results/test_read_write_mandatory/00_5load_notype.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory/00_5load_notype.md b/tests/results/test_read_write_mandatory/00_5load_notype.md deleted file mode 100644 index e47f6c1c..00000000 --- a/tests/results/test_read_write_mandatory/00_5load_notype.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory/00_5load_notype.sh b/tests/results/test_read_write_mandatory/00_5load_notype.sh deleted file mode 100644 index 08ebb456..00000000 --- a/tests/results/test_read_write_mandatory/00_5load_notype.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md b/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md deleted file mode 100644 index fec3bc0b..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/00_6boolean.md b/tests/results/test_read_write_mandatory/00_6boolean.md deleted file mode 100644 index 17404950..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/00_6boolean.sh b/tests/results/test_read_write_mandatory/00_6boolean.sh deleted file mode 100644 index 45ac0eb3..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 6635fde9..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.md b/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.md deleted file mode 100644 index be600de0..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.sh b/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.sh deleted file mode 100644 index 7b54f607..00000000 --- a/tests/results/test_read_write_mandatory/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/00_6choice.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice.gitlab.md deleted file mode 100644 index caa9a97c..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test -- :notebook: the third variable: [- a -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory/00_6choice.md b/tests/results/test_read_write_mandatory/00_6choice.md deleted file mode 100644 index 2a397ade..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test -- :notebook: the third variable: a ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory/00_6choice.sh b/tests/results/test_read_write_mandatory/00_6choice.sh deleted file mode 100644 index 74d6574b..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┣━━ 📓 the second variable: a ◀ loaded from rougail-test -┣━━ 📓 the third variable: a ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_6choice_calculation.md b/tests/results/test_read_write_mandatory/00_6choice_calculation.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_6choice_calculation.sh b/tests/results/test_read_write_mandatory/00_6choice_calculation.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md deleted file mode 100644 index 3daf20b1..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_link.md b/tests/results/test_read_write_mandatory/00_6choice_link.md deleted file mode 100644 index efd2e064..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_link.sh b/tests/results/test_read_write_mandatory/00_6choice_link.sh deleted file mode 100644 index 2b93f3e5..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md deleted file mode 100644 index a71e9b27..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable.md b/tests/results/test_read_write_mandatory/00_6choice_variable.md deleted file mode 100644 index 37fb9257..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable.sh b/tests/results/test_read_write_mandatory/00_6choice_variable.sh deleted file mode 100644 index 05afa0fd..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 20258acb..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link.md deleted file mode 100644 index c0f5fe9b..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link.sh b/tests/results/test_read_write_mandatory/00_6choice_variable_link.sh deleted file mode 100644 index e2b60964..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 52be8a70..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.md b/tests/results/test_read_write_mandatory/00_6choice_variable_link2.md deleted file mode 100644 index 8a0fc5b2..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.sh b/tests/results/test_read_write_mandatory/00_6choice_variable_link2.sh deleted file mode 100644 index f79a8ff9..00000000 --- a/tests/results/test_read_write_mandatory/00_6choice_variable_link2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 family - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/00_6custom.gitlab.md b/tests/results/test_read_write_mandatory/00_6custom.gitlab.md deleted file mode 100644 index 0c7d688f..00000000 --- a/tests/results/test_read_write_mandatory/00_6custom.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6custom.md b/tests/results/test_read_write_mandatory/00_6custom.md deleted file mode 100644 index 84e63614..00000000 --- a/tests/results/test_read_write_mandatory/00_6custom.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6custom.sh b/tests/results/test_read_write_mandatory/00_6custom.sh deleted file mode 100644 index ff540e67..00000000 --- a/tests/results/test_read_write_mandatory/00_6custom.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md b/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6domainname.md b/tests/results/test_read_write_mandatory/00_6domainname.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6domainname.sh b/tests/results/test_read_write_mandatory/00_6domainname.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md b/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6domainname_params.md b/tests/results/test_read_write_mandatory/00_6domainname_params.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname_params.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6domainname_params.sh b/tests/results/test_read_write_mandatory/00_6domainname_params.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_read_write_mandatory/00_6domainname_params.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_read_write_mandatory/00_6float.gitlab.md b/tests/results/test_read_write_mandatory/00_6float.gitlab.md deleted file mode 100644 index 1d998460..00000000 --- a/tests/results/test_read_write_mandatory/00_6float.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_read_write_mandatory/00_6float.md b/tests/results/test_read_write_mandatory/00_6float.md deleted file mode 100644 index 199a039f..00000000 --- a/tests/results/test_read_write_mandatory/00_6float.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_read_write_mandatory/00_6float.sh b/tests/results/test_read_write_mandatory/00_6float.sh deleted file mode 100644 index 464bb5f7..00000000 --- a/tests/results/test_read_write_mandatory/00_6float.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_read_write_mandatory/00_6integer.gitlab.md b/tests/results/test_read_write_mandatory/00_6integer.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_read_write_mandatory/00_6integer.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/00_6integer.md b/tests/results/test_read_write_mandatory/00_6integer.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_read_write_mandatory/00_6integer.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/00_6integer.sh b/tests/results/test_read_write_mandatory/00_6integer.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_read_write_mandatory/00_6integer.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory/00_6ip.gitlab.md b/tests/results/test_read_write_mandatory/00_6ip.gitlab.md deleted file mode 100644 index 884516c1..00000000 --- a/tests/results/test_read_write_mandatory/00_6ip.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory/00_6ip.md b/tests/results/test_read_write_mandatory/00_6ip.md deleted file mode 100644 index 99cd0d71..00000000 --- a/tests/results/test_read_write_mandatory/00_6ip.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory/00_6ip.sh b/tests/results/test_read_write_mandatory/00_6ip.sh deleted file mode 100644 index b15c8948..00000000 --- a/tests/results/test_read_write_mandatory/00_6ip.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) -┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) -┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory/00_6network.gitlab.md b/tests/results/test_read_write_mandatory/00_6network.gitlab.md deleted file mode 100644 index 6bc5530c..00000000 --- a/tests/results/test_read_write_mandatory/00_6network.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory/00_6network.md b/tests/results/test_read_write_mandatory/00_6network.md deleted file mode 100644 index 3e6ab954..00000000 --- a/tests/results/test_read_write_mandatory/00_6network.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory/00_6network.sh b/tests/results/test_read_write_mandatory/00_6network.sh deleted file mode 100644 index 855ab3a3..00000000 --- a/tests/results/test_read_write_mandatory/00_6network.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) -┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) -┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory/00_6number.gitlab.md b/tests/results/test_read_write_mandatory/00_6number.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_read_write_mandatory/00_6number.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/00_6number.md b/tests/results/test_read_write_mandatory/00_6number.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_read_write_mandatory/00_6number.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/00_6number.sh b/tests/results/test_read_write_mandatory/00_6number.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_read_write_mandatory/00_6number.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory/00_6port.gitlab.md b/tests/results/test_read_write_mandatory/00_6port.gitlab.md deleted file mode 100644 index 11835540..00000000 --- a/tests/results/test_read_write_mandatory/00_6port.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: [- 80 -] ← loaded from rougail-test -- :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_read_write_mandatory/00_6port.md b/tests/results/test_read_write_mandatory/00_6port.md deleted file mode 100644 index ca62353b..00000000 --- a/tests/results/test_read_write_mandatory/00_6port.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: 80 ← loaded from rougail-test -- :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_read_write_mandatory/00_6port.sh b/tests/results/test_read_write_mandatory/00_6port.sh deleted file mode 100644 index f48b2821..00000000 --- a/tests/results/test_read_write_mandatory/00_6port.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test -┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md b/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md deleted file mode 100644 index 7b610971..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_read_write_mandatory/00_6regexp.md b/tests/results/test_read_write_mandatory/00_6regexp.md deleted file mode 100644 index 1d3fe3a0..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_read_write_mandatory/00_6regexp.sh b/tests/results/test_read_write_mandatory/00_6regexp.sh deleted file mode 100644 index 248d53f8..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md b/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md deleted file mode 100644 index 0bcef460..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_read_write_mandatory/00_6regexp_link.md b/tests/results/test_read_write_mandatory/00_6regexp_link.md deleted file mode 100644 index 2c6dd6e1..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_read_write_mandatory/00_6regexp_link.sh b/tests/results/test_read_write_mandatory/00_6regexp_link.sh deleted file mode 100644 index b622acdb..00000000 --- a/tests/results/test_read_write_mandatory/00_6regexp_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) -┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_read_write_mandatory/00_6secret.gitlab.md b/tests/results/test_read_write_mandatory/00_6secret.gitlab.md deleted file mode 100644 index a8b62a7a..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test -- :notebook: the second variable: [- onE7vaLues_len1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6secret.md b/tests/results/test_read_write_mandatory/00_6secret.md deleted file mode 100644 index c2b5f674..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test -- :notebook: the second variable: onE7vaLues_len1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6secret.sh b/tests/results/test_read_write_mandatory/00_6secret.sh deleted file mode 100644 index e02679f4..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: onE7vaLues_len1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md b/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md deleted file mode 100644 index fde07521..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret_param.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- onE7vaLues_len1 -] ← loaded from rougail-test -- :notebook: the second variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- onE7vaLues -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6secret_param.md b/tests/results/test_read_write_mandatory/00_6secret_param.md deleted file mode 100644 index 266e4e39..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret_param.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: onE7vaLues_len1 ← loaded from rougail-test -- :notebook: the second variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: onE7vaLues ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/00_6secret_param.sh b/tests/results/test_read_write_mandatory/00_6secret_param.sh deleted file mode 100644 index fe11467b..00000000 --- a/tests/results/test_read_write_mandatory/00_6secret_param.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: onE7vaLues_len1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 the third variable: onE7vaLues ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/00_6string.gitlab.md b/tests/results/test_read_write_mandatory/00_6string.gitlab.md deleted file mode 100644 index 0f337dd7..00000000 --- a/tests/results/test_read_write_mandatory/00_6string.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test -- :notebook: the third variable: [- string1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/00_6string.md b/tests/results/test_read_write_mandatory/00_6string.md deleted file mode 100644 index 3d20a7b6..00000000 --- a/tests/results/test_read_write_mandatory/00_6string.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test -- :notebook: the third variable: string1 ← loaded from rougail-test -- :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/00_6string.sh b/tests/results/test_read_write_mandatory/00_6string.sh deleted file mode 100644 index 1180cc59..00000000 --- a/tests/results/test_read_write_mandatory/00_6string.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md deleted file mode 100644 index 7e65279f..00000000 --- a/tests/results/test_read_write_mandatory/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory/00_7choice_quote.md b/tests/results/test_read_write_mandatory/00_7choice_quote.md deleted file mode 100644 index d68a08e9..00000000 --- a/tests/results/test_read_write_mandatory/00_7choice_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory/00_7choice_quote.sh b/tests/results/test_read_write_mandatory/00_7choice_quote.sh deleted file mode 100644 index 3fd4be6b..00000000 --- a/tests/results/test_read_write_mandatory/00_7choice_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_read_write_mandatory/00_7help.gitlab.md b/tests/results/test_read_write_mandatory/00_7help.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory/00_7help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help.md b/tests/results/test_read_write_mandatory/00_7help.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory/00_7help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help.sh b/tests/results/test_read_write_mandatory/00_7help.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory/00_7help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_quote.md b/tests/results/test_read_write_mandatory/00_7help_quote.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_quote.sh b/tests/results/test_read_write_mandatory/00_7help_quote.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md b/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md deleted file mode 100644 index ac1d4b90..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_sup.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first : [- string1 -] ← loaded from rougail-test -- :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_sup.md b/tests/results/test_read_write_mandatory/00_7help_sup.md deleted file mode 100644 index 40eb4168..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_sup.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first : string1 ← loaded from rougail-test -- :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7help_sup.sh b/tests/results/test_read_write_mandatory/00_7help_sup.sh deleted file mode 100644 index 81ef100f..00000000 --- a/tests/results/test_read_write_mandatory/00_7help_sup.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first : string1 ◀ loaded from rougail-test -┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md deleted file mode 100644 index f189f108..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote.md b/tests/results/test_read_write_mandatory/00_7value_doublequote.md deleted file mode 100644 index 85e6ada7..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote.sh b/tests/results/test_read_write_mandatory/00_7value_doublequote.sh deleted file mode 100644 index 0e461397..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 3e7e1a8b..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote2.md b/tests/results/test_read_write_mandatory/00_7value_doublequote2.md deleted file mode 100644 index 1cb8226d..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote2.sh b/tests/results/test_read_write_mandatory/00_7value_doublequote2.sh deleted file mode 100644 index c062e186..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 25077480..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote3.md b/tests/results/test_read_write_mandatory/00_7value_doublequote3.md deleted file mode 100644 index ca15bf9a..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_read_write_mandatory/00_7value_doublequote3.sh b/tests/results/test_read_write_mandatory/00_7value_doublequote3.sh deleted file mode 100644 index 6ce54613..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_doublequote3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md b/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md deleted file mode 100644 index 0c1efcaf..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory/00_7value_quote.md b/tests/results/test_read_write_mandatory/00_7value_quote.md deleted file mode 100644 index c449b848..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory/00_7value_quote.sh b/tests/results/test_read_write_mandatory/00_7value_quote.sh deleted file mode 100644 index 9f81028f..00000000 --- a/tests/results/test_read_write_mandatory/00_7value_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md b/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_8calculation_information.md b/tests/results/test_read_write_mandatory/00_8calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/00_8calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_8calculation_information.sh b/tests/results/test_read_write_mandatory/00_8calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/00_8calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_8test.gitlab.md b/tests/results/test_read_write_mandatory/00_8test.gitlab.md deleted file mode 100644 index c0815f1f..00000000 --- a/tests/results/test_read_write_mandatory/00_8test.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- test -] ← loaded from rougail-test -- :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- test1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_8test.md b/tests/results/test_read_write_mandatory/00_8test.md deleted file mode 100644 index 0cf7b6e4..00000000 --- a/tests/results/test_read_write_mandatory/00_8test.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: test ← loaded from rougail-test -- :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: test1 ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_8test.sh b/tests/results/test_read_write_mandatory/00_8test.sh deleted file mode 100644 index 410d4210..00000000 --- a/tests/results/test_read_write_mandatory/00_8test.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: test ◀ loaded from rougail-test -┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the sixth variable: - ┣━━ test1 ◀ loaded from rougail-test - ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index ac21615c..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.md b/tests/results/test_read_write_mandatory/00_9choice_variable_multi.md deleted file mode 100644 index 03616d6d..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory/00_9choice_variable_multi.sh deleted file mode 100644 index f900f928..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test - ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md b/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md deleted file mode 100644 index 287ac4a2..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_read_write_mandatory/00_9choice_variables.md b/tests/results/test_read_write_mandatory/00_9choice_variables.md deleted file mode 100644 index f2a80522..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variables.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_read_write_mandatory/00_9choice_variables.sh b/tests/results/test_read_write_mandatory/00_9choice_variables.sh deleted file mode 100644 index cd36825e..00000000 --- a/tests/results/test_read_write_mandatory/00_9choice_variables.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md deleted file mode 100644 index 39c88fc8..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation.md b/tests/results/test_read_write_mandatory/00_9default_calculation.md deleted file mode 100644 index 7c1f3012..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation.sh b/tests/results/test_read_write_mandatory/00_9default_calculation.sh deleted file mode 100644 index c6ef6ceb..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.md b/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index 2a7eba1a..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.md b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 37ec2ebc..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 0296637c..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index ee6735b5..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional.md deleted file mode 100644 index b7621c63..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_optional.sh deleted file mode 100644 index 1b691023..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 12720a7e..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.md b/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.md deleted file mode 100644 index af923dbe..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.sh deleted file mode 100644 index 3d7cebbf..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index 270d2676..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.md b/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.md deleted file mode 100644 index 98615c37..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.sh b/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.sh deleted file mode 100644 index 70cff6f2..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.sh b/tests/results/test_read_write_mandatory/00_9default_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.md b/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.sh b/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_9default_integer.md b/tests/results/test_read_write_mandatory/00_9default_integer.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_9default_integer.sh b/tests/results/test_read_write_mandatory/00_9default_integer.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md b/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_number.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_9default_number.md b/tests/results/test_read_write_mandatory/00_9default_number.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_number.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory/00_9default_number.sh b/tests/results/test_read_write_mandatory/00_9default_number.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory/00_9default_number.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md deleted file mode 100644 index 5d310257..00000000 --- a/tests/results/test_read_write_mandatory/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/01_6boolean_multi.md b/tests/results/test_read_write_mandatory/01_6boolean_multi.md deleted file mode 100644 index d6d1b7bb..00000000 --- a/tests/results/test_read_write_mandatory/01_6boolean_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/01_6boolean_multi.sh b/tests/results/test_read_write_mandatory/01_6boolean_multi.sh deleted file mode 100644 index 17196b85..00000000 --- a/tests/results/test_read_write_mandatory/01_6boolean_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the sixth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the seventh variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the eighth variable: - ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md deleted file mode 100644 index 4209eb56..00000000 --- a/tests/results/test_read_write_mandatory/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6custom_multi.md b/tests/results/test_read_write_mandatory/01_6custom_multi.md deleted file mode 100644 index 0e57ecd7..00000000 --- a/tests/results/test_read_write_mandatory/01_6custom_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6custom_multi.sh b/tests/results/test_read_write_mandatory/01_6custom_multi.sh deleted file mode 100644 index ae0715f6..00000000 --- a/tests/results/test_read_write_mandatory/01_6custom_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first custom variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 a second custom variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md deleted file mode 100644 index 93e48755..00000000 --- a/tests/results/test_read_write_mandatory/01_6float_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6float_multi.md b/tests/results/test_read_write_mandatory/01_6float_multi.md deleted file mode 100644 index a31f7046..00000000 --- a/tests/results/test_read_write_mandatory/01_6float_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6float_multi.sh b/tests/results/test_read_write_mandatory/01_6float_multi.sh deleted file mode 100644 index b486778a..00000000 --- a/tests/results/test_read_write_mandatory/01_6float_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 2.2 ◀ loaded from rougail-test - ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md deleted file mode 100644 index e30525a2..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi.md b/tests/results/test_read_write_mandatory/01_6integer_multi.md deleted file mode 100644 index eaa41990..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi.sh b/tests/results/test_read_write_mandatory/01_6integer_multi.sh deleted file mode 100644 index c0be4d5e..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 836b7568..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.md b/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.md deleted file mode 100644 index 87fbdf9c..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.sh b/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.sh deleted file mode 100644 index 442425ee..00000000 --- a/tests/results/test_read_write_mandatory/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 the first variable: - ┣━━ 1 ◀ loaded from rougail-test - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md deleted file mode 100644 index 5fbc910b..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_empty.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_empty.md b/tests/results/test_read_write_mandatory/01_6string_empty.md deleted file mode 100644 index 975280ed..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_empty.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_empty.sh b/tests/results/test_read_write_mandatory/01_6string_empty.sh deleted file mode 100644 index 1a9baced..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_empty.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test (⏳ null) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md deleted file mode 100644 index 3142597e..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi.md b/tests/results/test_read_write_mandatory/01_6string_multi.md deleted file mode 100644 index c3e2d0f4..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi.sh b/tests/results/test_read_write_mandatory/01_6string_multi.sh deleted file mode 100644 index 1a9fb9c3..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md deleted file mode 100644 index db6dabfb..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi_length.md b/tests/results/test_read_write_mandatory/01_6string_multi_length.md deleted file mode 100644 index ce1579a3..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi_length.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_6string_multi_length.sh b/tests/results/test_read_write_mandatory/01_6string_multi_length.sh deleted file mode 100644 index 2b1c2a8e..00000000 --- a/tests/results/test_read_write_mandatory/01_6string_multi_length.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) -┗━━ 📓 the variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) - ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index 7974ca1b..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.md deleted file mode 100644 index 43e19150..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.sh b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.sh deleted file mode 100644 index 580c6eba..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index 9042903f..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.md b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.md deleted file mode 100644 index 364a85c4..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.sh b/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.sh deleted file mode 100644 index c622b332..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 33da1434..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_quote.md b/tests/results/test_read_write_mandatory/01_7value_multi_quote.md deleted file mode 100644 index 89ae9bc4..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_quote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_7value_multi_quote.sh b/tests/results/test_read_write_mandatory/01_7value_multi_quote.sh deleted file mode 100644 index 09cf19be..00000000 --- a/tests/results/test_read_write_mandatory/01_7value_multi_quote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 24d1736f..00000000 --- a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.md b/tests/results/test_read_write_mandatory/01_8calculation_information_multi.md deleted file mode 100644 index 46dfeff6..00000000 --- a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.sh b/tests/results/test_read_write_mandatory/01_8calculation_information_multi.sh deleted file mode 100644 index c86f0881..00000000 --- a/tests/results/test_read_write_mandatory/01_8calculation_information_multi.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index f2fff686..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.md b/tests/results/test_read_write_mandatory/01_9choice_variable_multi.md deleted file mode 100644 index 2382d828..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory/01_9choice_variable_multi.sh deleted file mode 100644 index d136bfab..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index c8b8b854..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.md b/tests/results/test_read_write_mandatory/01_9choice_variable_optional.md deleted file mode 100644 index 586b2381..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.sh b/tests/results/test_read_write_mandatory/01_9choice_variable_optional.sh deleted file mode 100644 index 0e05eefe..00000000 --- a/tests/results/test_read_write_mandatory/01_9choice_variable_optional.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_read_write_mandatory/02_0tags.gitlab.md b/tests/results/test_read_write_mandatory/02_0tags.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory/02_0tags.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/02_0tags.md b/tests/results/test_read_write_mandatory/02_0tags.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory/02_0tags.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/02_0tags.sh b/tests/results/test_read_write_mandatory/02_0tags.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory/02_0tags.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md b/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md deleted file mode 100644 index ee97f7cd..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/04_0type_param.md b/tests/results/test_read_write_mandatory/04_0type_param.md deleted file mode 100644 index f0d07715..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/04_0type_param.sh b/tests/results/test_read_write_mandatory/04_0type_param.sh deleted file mode 100644 index 053465dd..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md deleted file mode 100644 index 234a5b5f..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/04_0type_param_integer.md b/tests/results/test_read_write_mandatory/04_0type_param_integer.md deleted file mode 100644 index 67873679..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory/04_0type_param_integer.sh b/tests/results/test_read_write_mandatory/04_0type_param_integer.sh deleted file mode 100644 index 695cea51..00000000 --- a/tests/results/test_read_write_mandatory/04_0type_param_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md deleted file mode 100644 index e1a60ad6..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_read_write_mandatory/04_1auto_save.md b/tests/results/test_read_write_mandatory/04_1auto_save.md deleted file mode 100644 index 18a70157..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: an auto save variable: no diff --git a/tests/results/test_read_write_mandatory/04_1auto_save.sh b/tests/results/test_read_write_mandatory/04_1auto_save.sh deleted file mode 100644 index 56bd3b1f..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index 469ed912..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- no -] diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.md deleted file mode 100644 index 093d07d4..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: no diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.sh b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.sh deleted file mode 100644 index 31019354..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: no diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index b6f6045b..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- yes -] diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index 9cad597b..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: yes diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 6f25cf6c..00000000 --- a/tests/results/test_read_write_mandatory/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: yes diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.md b/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.sh b/tests/results/test_read_write_mandatory/04_1auto_save_and_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 1344e520..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.md deleted file mode 100644 index 9900783e..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.sh deleted file mode 100644 index c7980521..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index d9a452de..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.md deleted file mode 100644 index bfd382d2..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.sh deleted file mode 100644 index 52b2ac9e..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index fefd8edb..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.md deleted file mode 100644 index 89ed9a83..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.sh deleted file mode 100644 index fb486f3c..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 94af01bb..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.md b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.md deleted file mode 100644 index d5b56133..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.sh b/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.sh deleted file mode 100644 index 46192c54..00000000 --- a/tests/results/test_read_write_mandatory/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 46e2de93..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.md deleted file mode 100644 index 1faa8462..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.sh deleted file mode 100644 index ac23b242..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index bf967002..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.md deleted file mode 100644 index de404f2a..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.sh deleted file mode 100644 index bf7ddb97..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index 1c4b63d9..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 3c0b5916..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index 10f475dc..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index f38884ea..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.md deleted file mode 100644 index b10ca8da..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 770895b7..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 2bfd3c07..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.md deleted file mode 100644 index f17f3292..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 23e7f59f..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable8.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.md b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.sh b/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory/04_5validators.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators.gitlab.md deleted file mode 100644 index 0174f065..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators.md b/tests/results/test_read_write_mandatory/04_5validators.md deleted file mode 100644 index 12a8f33c..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators.sh b/tests/results/test_read_write_mandatory/04_5validators.sh deleted file mode 100644 index ea9b04d3..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md deleted file mode 100644 index 42963e31..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory/04_5validators_differ.md b/tests/results/test_read_write_mandatory/04_5validators_differ.md deleted file mode 100644 index e3a0a748..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_differ.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory/04_5validators_differ.sh b/tests/results/test_read_write_mandatory/04_5validators_differ.sh deleted file mode 100644 index c928da68..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_differ.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) -┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md deleted file mode 100644 index 80c92a68..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi.md b/tests/results/test_read_write_mandatory/04_5validators_multi.md deleted file mode 100644 index 5604494f..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi.sh b/tests/results/test_read_write_mandatory/04_5validators_multi.sh deleted file mode 100644 index e75b040f..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md deleted file mode 100644 index 4f2aedad..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi2.md b/tests/results/test_read_write_mandatory/04_5validators_multi2.md deleted file mode 100644 index 4835d09e..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi2.sh b/tests/results/test_read_write_mandatory/04_5validators_multi2.sh deleted file mode 100644 index 3a83e2d5..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test (⏳ no) - ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md deleted file mode 100644 index f3a2d97a..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi3.md b/tests/results/test_read_write_mandatory/04_5validators_multi3.md deleted file mode 100644 index 748fbe89..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/04_5validators_multi3.sh b/tests/results/test_read_write_mandatory/04_5validators_multi3.sh deleted file mode 100644 index 37efa90d..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_multi3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) - ┣━━ (⏳ 1) - ┗━━ (⏳ 2) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings.md b/tests/results/test_read_write_mandatory/04_5validators_warnings.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings.sh b/tests/results/test_read_write_mandatory/04_5validators_warnings.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.md b/tests/results/test_read_write_mandatory/04_5validators_warnings_all.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.sh b/tests/results/test_read_write_mandatory/04_5validators_warnings_all.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_read_write_mandatory/04_5validators_warnings_all.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.md b/tests/results/test_read_write_mandatory/05_0multi_not_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.sh b/tests/results/test_read_write_mandatory/05_0multi_not_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_not_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/05_0multi_uniq.md b/tests/results/test_read_write_mandatory/05_0multi_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/05_0multi_uniq.sh b/tests/results/test_read_write_mandatory/05_0multi_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory/05_0multi_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md deleted file mode 100644 index 4fc539eb..00000000 --- a/tests/results/test_read_write_mandatory/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- no -] diff --git a/tests/results/test_read_write_mandatory/12_1auto_save_expert.md b/tests/results/test_read_write_mandatory/12_1auto_save_expert.md deleted file mode 100644 index 517523ba..00000000 --- a/tests/results/test_read_write_mandatory/12_1auto_save_expert.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_read_write_mandatory/12_1auto_save_expert.sh b/tests/results/test_read_write_mandatory/12_1auto_save_expert.sh deleted file mode 100644 index 01150e25..00000000 --- a/tests/results/test_read_write_mandatory/12_1auto_save_expert.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md b/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md deleted file mode 100644 index 87010fc4..00000000 --- a/tests/results/test_read_write_mandatory/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_0redefine_description.md b/tests/results/test_read_write_mandatory/16_0redefine_description.md deleted file mode 100644 index ddc8861c..00000000 --- a/tests/results/test_read_write_mandatory/16_0redefine_description.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_0redefine_description.sh b/tests/results/test_read_write_mandatory/16_0redefine_description.sh deleted file mode 100644 index d34dc9cf..00000000 --- a/tests/results/test_read_write_mandatory/16_0redefine_description.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.md b/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.sh b/tests/results/test_read_write_mandatory/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.gitlab.md b/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.md b/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.sh b/tests/results/test_read_write_mandatory/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index 582e4ddb..00000000 --- a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.md b/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.md deleted file mode 100644 index 5b5104e5..00000000 --- a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.sh b/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.sh deleted file mode 100644 index b8da1cea..00000000 --- a/tests/results/test_read_write_mandatory/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md deleted file mode 100644 index 61200957..00000000 --- a/tests/results/test_read_write_mandatory/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5exists_nonexists.md b/tests/results/test_read_write_mandatory/16_5exists_nonexists.md deleted file mode 100644 index 7513b68b..00000000 --- a/tests/results/test_read_write_mandatory/16_5exists_nonexists.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5exists_nonexists.sh b/tests/results/test_read_write_mandatory/16_5exists_nonexists.sh deleted file mode 100644 index f5b51d27..00000000 --- a/tests/results/test_read_write_mandatory/16_5exists_nonexists.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/16_5exists_redefine.gitlab.md b/tests/results/test_read_write_mandatory/16_5exists_redefine.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5exists_redefine.md b/tests/results/test_read_write_mandatory/16_5exists_redefine.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5exists_redefine.sh b/tests/results/test_read_write_mandatory/16_5exists_redefine.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_calculation.md b/tests/results/test_read_write_mandatory/16_5redefine_calculation.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_calculation.sh b/tests/results/test_read_write_mandatory/16_5redefine_calculation.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md deleted file mode 100644 index 353e222d..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_choice.md b/tests/results/test_read_write_mandatory/16_5redefine_choice.md deleted file mode 100644 index 5db72d9a..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_choice.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_choice.sh b/tests/results/test_read_write_mandatory/16_5redefine_choice.sh deleted file mode 100644 index 3a629191..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_choice.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default.md b/tests/results/test_read_write_mandatory/16_5redefine_default.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default.sh b/tests/results/test_read_write_mandatory/16_5redefine_default.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.md b/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.sh b/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md deleted file mode 100644 index a69c29c3..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_family.md b/tests/results/test_read_write_mandatory/16_5redefine_family.md deleted file mode 100644 index b159751c..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_family.sh b/tests/results/test_read_write_mandatory/16_5redefine_family.sh deleted file mode 100644 index bb08133f..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 new description - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md deleted file mode 100644 index 6c1c3743..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_help.md b/tests/results/test_read_write_mandatory/16_5redefine_help.md deleted file mode 100644 index 9ee7daa3..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_help.sh b/tests/results/test_read_write_mandatory/16_5redefine_help.sh deleted file mode 100644 index fd4905f8..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_hidden.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5redefine_hidden.md b/tests/results/test_read_write_mandatory/16_5redefine_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5redefine_hidden.sh b/tests/results/test_read_write_mandatory/16_5redefine_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_multi.md b/tests/results/test_read_write_mandatory/16_5redefine_multi.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_multi.sh b/tests/results/test_read_write_mandatory/16_5redefine_multi.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.md b/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_read_write_mandatory/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md b/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md deleted file mode 100644 index 2c9ecbe5..00000000 --- a/tests/results/test_read_write_mandatory/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5test_redefine.md b/tests/results/test_read_write_mandatory/16_5test_redefine.md deleted file mode 100644 index 6626d28c..00000000 --- a/tests/results/test_read_write_mandatory/16_5test_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_5test_redefine.sh b/tests/results/test_read_write_mandatory/16_5test_redefine.sh deleted file mode 100644 index c9dac4d6..00000000 --- a/tests/results/test_read_write_mandatory/16_5test_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md deleted file mode 100644 index 77d8d999..00000000 --- a/tests/results/test_read_write_mandatory/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory/16_6choice_redefine.md b/tests/results/test_read_write_mandatory/16_6choice_redefine.md deleted file mode 100644 index 380d05d1..00000000 --- a/tests/results/test_read_write_mandatory/16_6choice_redefine.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory/16_6choice_redefine.sh b/tests/results/test_read_write_mandatory/16_6choice_redefine.sh deleted file mode 100644 index 34e3ba21..00000000 --- a/tests/results/test_read_write_mandatory/16_6choice_redefine.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_read_write_mandatory/16_6exists_family.gitlab.md b/tests/results/test_read_write_mandatory/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_6exists_family.md b/tests/results/test_read_write_mandatory/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_6exists_family.sh b/tests/results/test_read_write_mandatory/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f915f7d0..00000000 --- a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.md b/tests/results/test_read_write_mandatory/16_6exists_redefine_family.md deleted file mode 100644 index 8a0e5620..00000000 --- a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.sh b/tests/results/test_read_write_mandatory/16_6exists_redefine_family.sh deleted file mode 100644 index 9e86f819..00000000 --- a/tests/results/test_read_write_mandatory/16_6exists_redefine_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 new description -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a second family - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md b/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md deleted file mode 100644 index 4be431c1..00000000 --- a/tests/results/test_read_write_mandatory/16exists_exists.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16exists_exists.md b/tests/results/test_read_write_mandatory/16exists_exists.md deleted file mode 100644 index 4c470e07..00000000 --- a/tests/results/test_read_write_mandatory/16exists_exists.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/16exists_exists.sh b/tests/results/test_read_write_mandatory/16exists_exists.sh deleted file mode 100644 index ab907b7a..00000000 --- a/tests/results/test_read_write_mandatory/16exists_exists.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/17_5redefine_leadership.gitlab.md b/tests/results/test_read_write_mandatory/17_5redefine_leadership.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/17_5redefine_leadership.md b/tests/results/test_read_write_mandatory/17_5redefine_leadership.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/17_5redefine_leadership.sh b/tests/results/test_read_write_mandatory/17_5redefine_leadership.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0empty_family.gitlab.md b/tests/results/test_read_write_mandatory/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0empty_family.md b/tests/results/test_read_write_mandatory/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0empty_family.sh b/tests/results/test_read_write_mandatory/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md b/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md deleted file mode 100644 index 7c84733e..00000000 --- a/tests/results/test_read_write_mandatory/20_0family_append.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0family_append.md b/tests/results/test_read_write_mandatory/20_0family_append.md deleted file mode 100644 index a8b9719e..00000000 --- a/tests/results/test_read_write_mandatory/20_0family_append.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0family_append.sh b/tests/results/test_read_write_mandatory/20_0family_append.sh deleted file mode 100644 index a13b229a..00000000 --- a/tests/results/test_read_write_mandatory/20_0family_append.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A family - ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0family_underscore.gitlab.md b/tests/results/test_read_write_mandatory/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0family_underscore.md b/tests/results/test_read_write_mandatory/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0family_underscore.sh b/tests/results/test_read_write_mandatory/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family.md b/tests/results/test_read_write_mandatory/20_0multi_family.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family.sh b/tests/results/test_read_write_mandatory/20_0multi_family.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_basic.md b/tests/results/test_read_write_mandatory/20_0multi_family_basic.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_basic.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_basic.sh b/tests/results/test_read_write_mandatory/20_0multi_family_basic.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_basic.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_expert.md b/tests/results/test_read_write_mandatory/20_0multi_family_expert.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_expert.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_expert.sh b/tests/results/test_read_write_mandatory/20_0multi_family_expert.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_expert.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md deleted file mode 100644 index 94d1798c..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_order.md b/tests/results/test_read_write_mandatory/20_0multi_family_order.md deleted file mode 100644 index 70a49206..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_order.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0multi_family_order.sh b/tests/results/test_read_write_mandatory/20_0multi_family_order.sh deleted file mode 100644 index d04191f9..00000000 --- a/tests/results/test_read_write_mandatory/20_0multi_family_order.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a sub family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 5ca71d92..00000000 --- a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.md b/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.md deleted file mode 100644 index 0cafcb81..00000000 --- a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.sh b/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.sh deleted file mode 100644 index 32cb5377..00000000 --- a/tests/results/test_read_write_mandatory/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/20_1empty_subfamily.gitlab.md b/tests/results/test_read_write_mandatory/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_1empty_subfamily.md b/tests/results/test_read_write_mandatory/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_1empty_subfamily.sh b/tests/results/test_read_write_mandatory/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index bd1df785..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.md deleted file mode 100644 index a8e625d2..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.sh b/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.sh deleted file mode 100644 index f0e10846..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┣━━ 📓 dynamic: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 2df94454..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.md b/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.md deleted file mode 100644 index 3a136486..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.sh b/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.sh deleted file mode 100644 index 4244d0a5..00000000 --- a/tests/results/test_read_write_mandatory/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md b/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md deleted file mode 100644 index cbf4068a..00000000 --- a/tests/results/test_read_write_mandatory/20_7help_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_7help_family.md b/tests/results/test_read_write_mandatory/20_7help_family.md deleted file mode 100644 index 41f2acc7..00000000 --- a/tests/results/test_read_write_mandatory/20_7help_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_7help_family.sh b/tests/results/test_read_write_mandatory/20_7help_family.sh deleted file mode 100644 index c9bbc685..00000000 --- a/tests/results/test_read_write_mandatory/20_7help_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 the first family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 the second family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md deleted file mode 100644 index a560c5af..00000000 --- a/tests/results/test_read_write_mandatory/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_9default_information_parent.md b/tests/results/test_read_write_mandatory/20_9default_information_parent.md deleted file mode 100644 index e67bf81e..00000000 --- a/tests/results/test_read_write_mandatory/20_9default_information_parent.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_9default_information_parent.sh b/tests/results/test_read_write_mandatory/20_9default_information_parent.sh deleted file mode 100644 index ac1e709e..00000000 --- a/tests/results/test_read_write_mandatory/20_9default_information_parent.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md b/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md deleted file mode 100644 index ded677c1..00000000 --- a/tests/results/test_read_write_mandatory/20_9family_absolute.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: [- string6 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: [- string5 -] ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_read_write_mandatory/20_9family_absolute.md b/tests/results/test_read_write_mandatory/20_9family_absolute.md deleted file mode 100644 index 1d3f37e4..00000000 --- a/tests/results/test_read_write_mandatory/20_9family_absolute.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: string6 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: string5 ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_read_write_mandatory/20_9family_absolute.sh b/tests/results/test_read_write_mandatory/20_9family_absolute.sh deleted file mode 100644 index 9c784385..00000000 --- a/tests/results/test_read_write_mandatory/20_9family_absolute.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 first variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a family -┃ ┣━━ 📓 a second variable: string6 ◀ loaded from rougail-test -┃ ┗━━ 📂 a sub family -┃  ┗━━ 📓 third variable: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a variable2: string1 ◀ loaded from rougail-test (⏳ string6) - ┣━━ 📓 var3: string5 ◀ loaded from rougail-test (⏳ string4) - ┗━━ 📂 a sub family -  ┗━━ 📓 fourth variable: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string5) diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 6887d877..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f48c6a65..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 85c11674..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 952bc256..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index dd617a14..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index 42a2b909..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 010bce1f..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index b65ff4d8..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 95a9d262..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.sh b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index 14412f5d..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.md b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.md deleted file mode 100644 index b1c4a25f..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index 2970d2e4..00000000 --- a/tests/results/test_read_write_mandatory/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index 29c01c5b..00000000 --- a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.md b/tests/results/test_read_write_mandatory/24_7validators_variable_optional.md deleted file mode 100644 index 1beb7638..00000000 --- a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.sh b/tests/results/test_read_write_mandatory/24_7validators_variable_optional.sh deleted file mode 100644 index 67ce7188..00000000 --- a/tests/results/test_read_write_mandatory/24_7validators_variable_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test - ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.md b/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.sh b/tests/results/test_read_write_mandatory/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership.md b/tests/results/test_read_write_mandatory/40_0leadership.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership.sh b/tests/results/test_read_write_mandatory/40_0leadership.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.md b/tests/results/test_read_write_mandatory/40_0leadership_diff_name.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.sh b/tests/results/test_read_write_mandatory/40_0leadership_diff_name.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_diff_name.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/40_0leadership_empty.md b/tests/results/test_read_write_mandatory/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/40_0leadership_empty.sh b/tests/results/test_read_write_mandatory/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 7e5f52ab..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.md deleted file mode 100644 index f880cd7e..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index a0bc32a9..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 7d310879..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.md b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.md deleted file mode 100644 index 95c37305..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.sh b/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.sh deleted file mode 100644 index 5fb71c9a..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 1709a587..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.md deleted file mode 100644 index 36414b39..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.sh b/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.sh deleted file mode 100644 index fd689b3a..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 04e45fb3..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.md b/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.md deleted file mode 100644 index 63e543a5..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.sh deleted file mode 100644 index e088b449..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 general -┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📂 general1 - ┗━━ 📂 leader -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 leader -   ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md deleted file mode 100644 index d43eb4bf..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_reduce.md b/tests/results/test_read_write_mandatory/40_0leadership_reduce.md deleted file mode 100644 index 88453886..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_reduce.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_0leadership_reduce.sh b/tests/results/test_read_write_mandatory/40_0leadership_reduce.sh deleted file mode 100644 index ee887294..00000000 --- a/tests/results/test_read_write_mandatory/40_0leadership_reduce.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -  ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index 59359dfe..00000000 --- a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.md b/tests/results/test_read_write_mandatory/40_1leadership_append_follower.md deleted file mode 100644 index 39a9eb94..00000000 --- a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.sh b/tests/results/test_read_write_mandatory/40_1leadership_append_follower.sh deleted file mode 100644 index 38bde772..00000000 --- a/tests/results/test_read_write_mandatory/40_1leadership_append_follower.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test - ┗━━ 📂 the leader -  ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -  ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.sh b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.md b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.sh b/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_read_write_mandatory/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.sh b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_read_write_mandatory/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md deleted file mode 100644 index cdab71d7..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_boolean.md b/tests/results/test_read_write_mandatory/40_8calculation_boolean.md deleted file mode 100644 index 8f229c20..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_boolean.sh b/tests/results/test_read_write_mandatory/40_8calculation_boolean.sh deleted file mode 100644 index fa059347..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first multi variable: -┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) -┃ ┗━━ (⏳ false) -┗━━ 📓 a second multi variable: - ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index 9ab6f966..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.md deleted file mode 100644 index ea76a3f7..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.sh b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.sh deleted file mode 100644 index e873131f..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index af08eb4f..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e9522140..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 8d9594cf..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a family - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index d8f02022..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.md b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 9dc630c0..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index 12a80d56..00000000 --- a/tests/results/test_read_write_mandatory/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 first family -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 second family - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index db88a660..00000000 --- a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index fa4bb5d7..00000000 --- a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index c1db45ba..00000000 --- a/tests/results/test_read_write_mandatory/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,24 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 19c6318b..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index cf5fbdfd..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 471eb20e..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index cfd5439a..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index 8750db38..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 2faff4bf..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 23c2ad34..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test -- :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index d64f4d5b..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test -- :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index 379f6858..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 leader -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) -┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) -┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 leader -┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test -┗━━ 📓 variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 6ff0ca56..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 9b1f660b..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 91efcba4..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index ac2dde3e..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index d41eea3b..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index 49e9a5b9..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 149cb498..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.md deleted file mode 100644 index 5ba581c7..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.sh deleted file mode 100644 index 6b4cdee9..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a calculated variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 37bf1d4d..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 3dcd76a1..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index ad0e2301..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 81fbb1fa..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index 06e478ec..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 5c19cd76..00000000 --- a/tests/results/test_read_write_mandatory/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,34 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md b/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md deleted file mode 100644 index 629de092..00000000 --- a/tests/results/test_read_write_mandatory/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/41_0choice_leader.md b/tests/results/test_read_write_mandatory/41_0choice_leader.md deleted file mode 100644 index 72715a35..00000000 --- a/tests/results/test_read_write_mandatory/41_0choice_leader.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/41_0choice_leader.sh b/tests/results/test_read_write_mandatory/41_0choice_leader.sh deleted file mode 100644 index 4498a73f..00000000 --- a/tests/results/test_read_write_mandatory/41_0choice_leader.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 The leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_0leadership_hidden.gitlab.md b/tests/results/test_read_write_mandatory/44_0leadership_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_0leadership_hidden.md b/tests/results/test_read_write_mandatory/44_0leadership_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_0leadership_hidden.sh b/tests/results/test_read_write_mandatory/44_0leadership_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.md b/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.sh b/tests/results/test_read_write_mandatory/44_0leadership_leader_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.md b/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write_mandatory/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index ee9d9dca..00000000 --- a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.md b/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index b2d08e0e..00000000 --- a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.sh b/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index a7273d4f..00000000 --- a/tests/results/test_read_write_mandatory/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 aleader - ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) - ┣━━ 📂 aleader - ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 aleader -  ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.sh b/tests/results/test_read_write_mandatory/44_4leadership_mandatory.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.md b/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_read_write_mandatory/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 0db07d7b..00000000 --- a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.md b/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index a2404e68..00000000 --- a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index a2636a45..00000000 --- a/tests/results/test_read_write_mandatory/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index d4cd7eb2..00000000 --- a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.md b/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index a58b3f36..00000000 --- a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index fa331e78..00000000 --- a/tests/results/test_read_write_mandatory/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic.md b/tests/results/test_read_write_mandatory/60_0family_dynamic.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index af851262..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.md deleted file mode 100644 index 08a9535a..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.sh deleted file mode 100644 index 6fbf1253..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index d1c55ac7..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index efb43e1b..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index fa8ff1f3..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) -┣━━ 📂 A dynamic family -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┗━━ 📂 A dynamic family - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index d89bbdb3..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.md deleted file mode 100644 index 812b4d57..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.sh deleted file mode 100644 index eb42dd7e..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index bc4e0c06..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 5a2dd6ba..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index d21a390e..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index 260b7a96..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.md deleted file mode 100644 index aac7c507..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index f8e82ed5..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index 20e60b3c..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_static.md deleted file mode 100644 index dc79f348..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_static.sh deleted file mode 100644 index 7aa2954b..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_static.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_test.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_test.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_test.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 3eca313d..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.md deleted file mode 100644 index f398f627..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.sh deleted file mode 100644 index ec5aa3ca..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) -┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 4d10ad3e..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 96839d92..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 6345b4d7..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 5eb83d83..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 6dd84d40..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index c263e940..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index bc0e5952..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index 720a9821..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index b608466a..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index d2943697..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 9aa6b202..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index 132f62e5..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_read_write_mandatory/60_0family_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_empty.md b/tests/results/test_read_write_mandatory/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_empty.sh b/tests/results/test_read_write_mandatory/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_hidden.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_hidden.md b/tests/results/test_read_write_mandatory/60_0family_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_hidden.sh b/tests/results/test_read_write_mandatory/60_0family_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md b/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md deleted file mode 100644 index e6cd7fa4..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_mode.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory/60_0family_mode.md b/tests/results/test_read_write_mandatory/60_0family_mode.md deleted file mode 100644 index f76c8324..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_mode.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory/60_0family_mode.sh b/tests/results/test_read_write_mandatory/60_0family_mode.sh deleted file mode 100644 index b4378976..00000000 --- a/tests/results/test_read_write_mandatory/60_0family_mode.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index b45560fd..00000000 --- a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.md b/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.md deleted file mode 100644 index fa7f0864..00000000 --- a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.sh b/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.sh deleted file mode 100644 index 92019a09..00000000 --- a/tests/results/test_read_write_mandatory/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 A dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index 5af07e18..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 04e40e16..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 46f3925c..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index a147d524..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index a1d2e634..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a792c807..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 5fdbf67a..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index ce8a68f4..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index e07d8b43..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 72143984..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 2bd02540..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index b7749f03..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index da3b06ca..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.md deleted file mode 100644 index 1e9d9e20..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4d05d0b5..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index b6b7d9fc..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index a5865a38..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index 4e06aea3..00000000 --- a/tests/results/test_read_write_mandatory/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index 936caa53..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.md deleted file mode 100644 index 3a12c9e1..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 526482f2..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index bebc24fc..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 56a75dec..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 368aed0c..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 8c17123a..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index bf21995b..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 1ce047d1..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index 3ee22e21..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: dynval1: [+ {} +] -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index e1f9e7c5..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :notebook: dynval1: {} -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index f6dfd744..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 dynval1: {} -┗━━ 📂 dynval2 - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 1e9176a2..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index 682154e6..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index d9c20648..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index a453f8c4..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 485ed622..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index f7cd4f2f..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index bd37ad38..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.md deleted file mode 100644 index 3b4c711d..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 2c88b793..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 502177dd..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index ec4f12df..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index 4f9bb00f..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic famify for val2 - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index 3dee4508..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 4a3151fa..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index ba054a06..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index 84f9b3c0..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index ff0a9f55..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 5d8b38a3..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index a6f0137a..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index 90d3e3a7..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index 62ecb8f7..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a dynamic family - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index c55d0ae6..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 6071368d..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 17e9909a..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 124eb013..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index e925b544..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index ddad282b..00000000 --- a/tests/results/test_read_write_mandatory/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 asuffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index e7891e7b..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.md deleted file mode 100644 index 1531b7ff..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.sh deleted file mode 100644 index ae685832..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 2cb72da4..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.md b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index 2bd221af..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index a2c146ad..00000000 --- a/tests/results/test_read_write_mandatory/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 6a7898b7..00000000 --- a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.md b/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.md deleted file mode 100644 index 290574db..00000000 --- a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 54091b4b..00000000 --- a/tests/results/test_read_write_mandatory/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index 24be4030..00000000 --- a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.md b/tests/results/test_read_write_mandatory/68_0family_leadership_mode.md deleted file mode 100644 index 56af6e36..00000000 --- a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.sh b/tests/results/test_read_write_mandatory/68_0family_leadership_mode.sh deleted file mode 100644 index c1a7f77e..00000000 --- a/tests/results/test_read_write_mandatory/68_0family_leadership_mode.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┗━━ 📂 A leader -  ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_0empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0empty.md b/tests/results/test_read_write_mandatory_secrets/00_0empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0empty.sh b/tests/results/test_read_write_mandatory_secrets/00_0empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_0no_variable.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.sh b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_default_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.md b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.sh b/tests/results/test_read_write_mandatory_secrets/00_0no_variable_remove_version.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.md b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh b/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_0version_underscore.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md deleted file mode 100644 index 1b86c63e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: empty: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.md b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.md deleted file mode 100644 index 8268a71a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: empty: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh deleted file mode 100644 index b0eed8c1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_1empty_variable.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 empty: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md deleted file mode 100644 index f92d0ee5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.md deleted file mode 100644 index 48a68168..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh deleted file mode 100644 index 6768e633..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md deleted file mode 100644 index 01c66533..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.md deleted file mode 100644 index b7756e16..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: maybe) -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh deleted file mode 100644 index 9d91c1da..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ no) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ maybe) -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md deleted file mode 100644 index 012cc0b3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md deleted file mode 100644 index 02edde27..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a_value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh deleted file mode 100644 index 773f5b63..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_params_permissive.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ a_value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md deleted file mode 100644 index 236f5765..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.md deleted file mode 100644 index a52ab165..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh deleted file mode 100644 index d1dd8bbd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md deleted file mode 100644 index 024f26fa..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md deleted file mode 100644 index 699fa959..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh deleted file mode 100644 index 404769d9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_description_multi_line.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md deleted file mode 100644 index d388a387..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- domain1.lan -] ← loaded from rougail-test - - [- domain2.lan -] ← loaded from rougail-test -- :notebook: a second variable: - - [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - [- domain2.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md deleted file mode 100644 index ca08e8df..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - domain1.lan ← loaded from rougail-test - - domain2.lan ← loaded from rougail-test -- :notebook: a second variable: - - domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain1.lan) - - domain2.lan ← loaded from rougail-test (:hourglass_flowing_sand: domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh b/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh deleted file mode 100644 index d710dab6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_2default_calculated_variable_transitive.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ domain1.lan ◀ loaded from rougail-test -┃ ┗━━ domain2.lan ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ domain1.lan ◀ loaded from rougail-test (⏳ domain1.lan) - ┗━━ domain2.lan ◀ loaded from rougail-test (⏳ domain2.lan) diff --git a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md deleted file mode 100644 index b9bd4cd9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.md b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.md deleted file mode 100644 index 659da021..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh b/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh deleted file mode 100644 index 83e10216..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_4load_subfolder.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md deleted file mode 100644 index a3648ea1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.md b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.md deleted file mode 100644 index e47f6c1c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh b/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh deleted file mode 100644 index 08ebb456..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_5load_notype.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md deleted file mode 100644 index fec3bc0b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean.md deleted file mode 100644 index 17404950..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh b/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh deleted file mode 100644 index 45ac0eb3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 the sixth variable: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md deleted file mode 100644 index 6635fde9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.md b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.md deleted file mode 100644 index be600de0..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh deleted file mode 100644 index 7b54f607..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6boolean_no_mandatory.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md deleted file mode 100644 index caa9a97c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test -- :notebook: the third variable: [- a -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice.md b/tests/results/test_read_write_mandatory_secrets/00_6choice.md deleted file mode 100644 index 2a397ade..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test -- :notebook: the third variable: a ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice.sh deleted file mode 100644 index 74d6574b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┣━━ 📓 the second variable: a ◀ loaded from rougail-test -┣━━ 📓 the third variable: a ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: a ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md deleted file mode 100644 index 3daf20b1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- a -] ← loaded from rougail-test -- :notebook: the second variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_link.md deleted file mode 100644 index efd2e064..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: a ← loaded from rougail-test -- :notebook: the second variable: a ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_link.sh deleted file mode 100644 index 2b93f3e5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: a ◀ loaded from rougail-test -┗━━ 📓 the second variable: a ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md deleted file mode 100644 index a71e9b27..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.md deleted file mode 100644 index 37fb9257..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh deleted file mode 100644 index 05afa0fd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md deleted file mode 100644 index 20258acb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.md deleted file mode 100644 index c0f5fe9b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.sh deleted file mode 100644 index e2b60964..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md deleted file mode 100644 index 52be8a70..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.md b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.md deleted file mode 100644 index 8a0fc5b2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) -- :open_file_folder: family - - :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.sh b/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.sh deleted file mode 100644 index f79a8ff9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6choice_variable_link2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ a) -┗━━ 📂 family - ┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md deleted file mode 100644 index 0c7d688f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6custom.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the seconf variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6custom.md b/tests/results/test_read_write_mandatory_secrets/00_6custom.md deleted file mode 100644 index 84e63614..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6custom.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the seconf variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6custom.sh b/tests/results/test_read_write_mandatory_secrets/00_6custom.sh deleted file mode 100644 index ff540e67..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6custom.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the seconf variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh b/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md deleted file mode 100644 index e8a87148..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: [- domain1.lan -] ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.md b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.md deleted file mode 100644 index 3ca11b96..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a domain name variable: domain1.lan ← loaded from rougail-test (:hourglass_flowing_sand: my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh b/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh deleted file mode 100644 index b3a0d508..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6domainname_params.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a domain name variable: domain1.lan ◀ loaded from rougail-test (⏳ my.domain.name) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md deleted file mode 100644 index 1d998460..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6float.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6float.md b/tests/results/test_read_write_mandatory_secrets/00_6float.md deleted file mode 100644 index 199a039f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6float.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the second variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the third variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) -- :notebook: the forth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the fifth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) -- :notebook: the sixth variable: 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6float.sh b/tests/results/test_read_write_mandatory_secrets/00_6float.sh deleted file mode 100644 index 464bb5f7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6float.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the second variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the third variable: 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┣━━ 📓 the forth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┣━━ 📓 the fifth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┗━━ 📓 the sixth variable: 1.1 ◀ loaded from rougail-test (⏳ 10.1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6integer.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6integer.md b/tests/results/test_read_write_mandatory_secrets/00_6integer.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6integer.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6integer.sh b/tests/results/test_read_write_mandatory_secrets/00_6integer.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6integer.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md deleted file mode 100644 index 884516c1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6ip.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: [- 192.168.1.6 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: [- 192.168.1.6/24 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6ip.md b/tests/results/test_read_write_mandatory_secrets/00_6ip.md deleted file mode 100644 index 99cd0d71..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6ip.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an IP: 192.168.1.6 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1) -- :notebook: an IP in CIDR format: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) -- :notebook: an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6ip.sh b/tests/results/test_read_write_mandatory_secrets/00_6ip.sh deleted file mode 100644 index b15c8948..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6ip.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an IP: 192.168.1.6 ◀ loaded from rougail-test (⏳ 1.1.1.1) -┣━━ 📓 an IP in CIDR format: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) -┗━━ 📓 an IP in CIDR format with obsolete CIDR type: 192.168.1.6/24 ◀ loaded from rougail-test (⏳ 1.1.1.1/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md deleted file mode 100644 index 6bc5530c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6network.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: [- 192.168.1.0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: [- 192.168.1.6/32 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6network.md b/tests/results/test_read_write_mandatory_secrets/00_6network.md deleted file mode 100644 index 3e6ab954..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6network.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: an network: 192.168.1.0 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0) -- :notebook: an network in CIDR format: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) -- :notebook: an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ← loaded from rougail-test (:hourglass_flowing_sand: 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6network.sh b/tests/results/test_read_write_mandatory_secrets/00_6network.sh deleted file mode 100644 index 855ab3a3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6network.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 an network: 192.168.1.0 ◀ loaded from rougail-test (⏳ 1.1.1.0) -┣━━ 📓 an network in CIDR format: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) -┗━━ 📓 an network in CIDR format with obsolete CIDR type: 192.168.1.6/32 ◀ loaded from rougail-test (⏳ 1.1.1.0/24) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md deleted file mode 100644 index be3b6727..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6number.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6number.md b/tests/results/test_read_write_mandatory_secrets/00_6number.md deleted file mode 100644 index c212932c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6number.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the second variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: the third variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) -- :notebook: this forth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the fifth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) -- :notebook: the sixth variable: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6number.sh b/tests/results/test_read_write_mandatory_secrets/00_6number.sh deleted file mode 100644 index d500ebd9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6number.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the second variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 the third variable: 1 ◀ loaded from rougail-test (⏳ 0) -┣━━ 📓 this forth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┣━━ 📓 the fifth variable: 1 ◀ loaded from rougail-test (⏳ 10) -┗━━ 📓 the sixth variable: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md deleted file mode 100644 index 11835540..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6port.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: [- 80 -] ← loaded from rougail-test -- :notebook: a port variable with default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: [- 80 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6port.md b/tests/results/test_read_write_mandatory_secrets/00_6port.md deleted file mode 100644 index ca62353b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6port.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a port variable: 80 ← loaded from rougail-test -- :notebook: a port variable with default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: a port variable with integer default value: 80 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6port.sh b/tests/results/test_read_write_mandatory_secrets/00_6port.sh deleted file mode 100644 index f48b2821..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6port.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a port variable: 80 ◀ loaded from rougail-test -┣━━ 📓 a port variable with default value: 80 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 a port variable with integer default value: 80 ◀ loaded from rougail-test (⏳ 8080) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md deleted file mode 100644 index 7b610971..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp.md deleted file mode 100644 index 1d3fe3a0..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh b/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh deleted file mode 100644 index 248d53f8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md deleted file mode 100644 index 0bcef460..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- #b1b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: [- #b2b1b1 -] ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.md b/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.md deleted file mode 100644 index 2c6dd6e1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: #b1b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #a1a1a1) -- :notebook: a second variable: #b2b1b1 ← loaded from rougail-test (:hourglass_flowing_sand: #b1b1b1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.sh b/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.sh deleted file mode 100644 index b622acdb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6regexp_link.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: #b1b1b1 ◀ loaded from rougail-test (⏳ #a1a1a1) -┗━━ 📓 a second variable: #b2b1b1 ◀ loaded from rougail-test (⏳ #b1b1b1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md deleted file mode 100644 index 97f97ca8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- ********** -] ← loaded from rougail-test -- :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret.md b/tests/results/test_read_write_mandatory_secrets/00_6secret.md deleted file mode 100644 index 86f90c55..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: ********** ← loaded from rougail-test -- :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret.sh b/tests/results/test_read_write_mandatory_secrets/00_6secret.sh deleted file mode 100644 index 1052d915..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test -┗━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md deleted file mode 100644 index d8340fef..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- ********** -] ← loaded from rougail-test -- :notebook: the second variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) -- :notebook: the third variable: [- ********** -] ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.md b/tests/results/test_read_write_mandatory_secrets/00_6secret_param.md deleted file mode 100644 index 6198e573..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: ********** ← loaded from rougail-test -- :notebook: the second variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) -- :notebook: the third variable: ********** ← loaded from rougail-test (:hourglass_flowing_sand: **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.sh b/tests/results/test_read_write_mandatory_secrets/00_6secret_param.sh deleted file mode 100644 index bf734def..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6secret_param.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: ********** ◀ loaded from rougail-test -┣━━ 📓 the second variable: ********** ◀ loaded from rougail-test (⏳ **********) -┗━━ 📓 the third variable: ********** ◀ loaded from rougail-test (⏳ **********) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md deleted file mode 100644 index 0f337dd7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6string.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test -- :notebook: the third variable: [- string1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6string.md b/tests/results/test_read_write_mandatory_secrets/00_6string.md deleted file mode 100644 index 3d20a7b6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6string.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test -- :notebook: the third variable: string1 ← loaded from rougail-test -- :notebook: the forth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the fifth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the sixth variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the seventh variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: 8080) -- :notebook: the height variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_6string.sh b/tests/results/test_read_write_mandatory_secrets/00_6string.sh deleted file mode 100644 index 1180cc59..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_6string.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the second variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the third variable: string1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the fifth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the sixth variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the seventh variable: string1 ◀ loaded from rougail-test (⏳ 8080) -┗━━ 📓 the height variable: string1 ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md deleted file mode 100644 index 7e65279f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- quote' -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.md b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.md deleted file mode 100644 index d68a08e9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: quote' ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh deleted file mode 100644 index 3fd4be6b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7choice_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: quote' ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help.md b/tests/results/test_read_write_mandatory_secrets/00_7help.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help.sh b/tests/results/test_read_write_mandatory_secrets/00_7help.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.md b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md deleted file mode 100644 index ac1d4b90..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first : [- string1 -] ← loaded from rougail-test -- :notebook: the second : [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.md b/tests/results/test_read_write_mandatory_secrets/00_7help_sup.md deleted file mode 100644 index 40eb4168..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first : string1 ← loaded from rougail-test -- :notebook: the second : string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.sh b/tests/results/test_read_write_mandatory_secrets/00_7help_sup.sh deleted file mode 100644 index 81ef100f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7help_sup.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first : string1 ◀ loaded from rougail-test -┗━━ 📓 the second : string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md deleted file mode 100644 index f189f108..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.md deleted file mode 100644 index 85e6ada7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh deleted file mode 100644 index 0e461397..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md deleted file mode 100644 index 3e7e1a8b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.md deleted file mode 100644 index 1cb8226d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh deleted file mode 100644 index c062e186..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote'") diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md deleted file mode 100644 index 25077480..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.md b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.md deleted file mode 100644 index ca15bf9a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote\"\') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh deleted file mode 100644 index 6ce54613..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_doublequote3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote\"\') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md deleted file mode 100644 index 0c1efcaf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.md b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.md deleted file mode 100644 index c449b848..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh b/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh deleted file mode 100644 index 9f81028f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_7value_quote.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ quote') diff --git a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.md b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh b/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md deleted file mode 100644 index c0815f1f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8test.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: [- test -] ← loaded from rougail-test -- :notebook: the second variable: [- test -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: [- test1 -] ← loaded from rougail-test -- :notebook: the forth variable: [- null -] ← loaded from rougail-test -- :notebook: the fifth variable: [- false -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - [- test1 -] ← loaded from rougail-test - - [- test2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_8test.md b/tests/results/test_read_write_mandatory_secrets/00_8test.md deleted file mode 100644 index 0cf7b6e4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8test.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: test ← loaded from rougail-test -- :notebook: the second variable: test ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: the third variable: test1 ← loaded from rougail-test -- :notebook: the forth variable: null ← loaded from rougail-test -- :notebook: the fifth variable: false ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the sixth variable: - - test1 ← loaded from rougail-test - - test2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_8test.sh b/tests/results/test_read_write_mandatory_secrets/00_8test.sh deleted file mode 100644 index 410d4210..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_8test.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: test ◀ loaded from rougail-test -┣━━ 📓 the second variable: test ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 the third variable: test1 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: null ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: false ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the sixth variable: - ┣━━ test1 ◀ loaded from rougail-test - ┗━━ test2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md deleted file mode 100644 index ac21615c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.md deleted file mode 100644 index 03616d6d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :notebook: a second variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh deleted file mode 100644 index f900f928..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test - ┗━━ val2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md deleted file mode 100644 index 287ac4a2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.md b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.md deleted file mode 100644 index f2a80522..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: the second source variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh b/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh deleted file mode 100644 index cd36825e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9choice_variables.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first source variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📓 the second source variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ val1) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md deleted file mode 100644 index 39c88fc8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.md deleted file mode 100644 index 7c1f3012..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string_1_True_) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh deleted file mode 100644 index c6ef6ceb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string_1_True_) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md deleted file mode 100644 index 9d1d0adc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md deleted file mode 100644 index 65c949a8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh deleted file mode 100644 index a88abcf8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional2.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md deleted file mode 100644 index 2a7eba1a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md deleted file mode 100644 index 37ec2ebc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh deleted file mode 100644 index 0296637c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_multi_optional_default.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md deleted file mode 100644 index ee6735b5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.md deleted file mode 100644 index b7621c63..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh deleted file mode 100644 index 1b691023..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md deleted file mode 100644 index 12720a7e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :notebook: my_calculated_variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md deleted file mode 100644 index af923dbe..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: my_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :notebook: my_calculated_variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh deleted file mode 100644 index 3d7cebbf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_optional_exists.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 my_variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 my_calculated_variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md deleted file mode 100644 index 270d2676..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.md b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.md deleted file mode 100644 index 98615c37..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh deleted file mode 100644 index 70cff6f2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_calculation_param_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ string1) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md deleted file mode 100644 index dd4f034c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.md b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.md deleted file mode 100644 index 2e750088..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.sh deleted file mode 100644 index 90aff6ca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_information_other_variable2.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.md b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md b/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md deleted file mode 100644 index d1288098..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_number.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_number.md b/tests/results/test_read_write_mandatory_secrets/00_9default_number.md deleted file mode 100644 index 8360758d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_number.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: 0 ← loaded from rougail-test (:hourglass_flowing_sand: 9) diff --git a/tests/results/test_read_write_mandatory_secrets/00_9default_number.sh b/tests/results/test_read_write_mandatory_secrets/00_9default_number.sh deleted file mode 100644 index 7c441822..00000000 --- a/tests/results/test_read_write_mandatory_secrets/00_9default_number.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: 0 ◀ loaded from rougail-test (⏳ 9) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md deleted file mode 100644 index 5d310257..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.md b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.md deleted file mode 100644 index d6d1b7bb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the second variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the third variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the forth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the fifth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the sixth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: the seventh variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: the eighth variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh deleted file mode 100644 index 17196b85..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6boolean_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the second variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the third variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┣━━ 📓 the forth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the fifth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the sixth variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 the seventh variable: -┃ ┗━━ true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 the eighth variable: - ┗━━ true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md deleted file mode 100644 index 4209eb56..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: a second custom variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.md b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.md deleted file mode 100644 index 0e57ecd7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first custom variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: a second custom variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh deleted file mode 100644 index ae0715f6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6custom_multi.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first custom variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 a second custom variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md deleted file mode 100644 index 93e48755..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - [- 2.2 -] ← loaded from rougail-test - - [- 3.3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.md b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.md deleted file mode 100644 index a31f7046..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the second variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the third variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 10.1) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1.1 ← loaded from rougail-test (:hourglass_flowing_sand: 0.0) - - 2.2 ← loaded from rougail-test - - 3.3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh deleted file mode 100644 index b486778a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6float_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 10.1) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) -┃ ┣━━ 2.2 ◀ loaded from rougail-test -┃ ┗━━ 3.3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1.1 ◀ loaded from rougail-test (⏳ 0.0) - ┣━━ 2.2 ◀ loaded from rougail-test - ┗━━ 3.3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md deleted file mode 100644 index e30525a2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.md deleted file mode 100644 index eaa41990..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the second variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the third variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the forth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the fifth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the sixth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the seventh variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test -- :notebook: the eighth variable: - - 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.sh deleted file mode 100644 index c0be4d5e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 10) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) -┃ ┣━━ 2 ◀ loaded from rougail-test -┃ ┗━━ 3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md deleted file mode 100644 index 836b7568..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: - - [- 1 -] ← loaded from rougail-test - - [- 2 -] ← loaded from rougail-test - - [- 3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.md b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.md deleted file mode 100644 index 87fbdf9c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: - - 1 ← loaded from rougail-test - - 2 ← loaded from rougail-test - - 3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh deleted file mode 100644 index 442425ee..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6integer_multi_mandatory.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 the first variable: - ┣━━ 1 ◀ loaded from rougail-test - ┣━━ 2 ◀ loaded from rougail-test - ┗━━ 3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md deleted file mode 100644 index 5fbc910b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: null) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.md b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.md deleted file mode 100644 index 975280ed..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: null) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh b/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh deleted file mode 100644 index 1a9baced..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_empty.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test (⏳ null) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md deleted file mode 100644 index 3142597e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.gitlab.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the second variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the third variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the forth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the fifth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the sixth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the seventh variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :notebook: the eighth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.md deleted file mode 100644 index c3e2d0f4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.md +++ /dev/null @@ -1,40 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the first variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the second variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the third variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the forth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the fifth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the sixth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the seventh variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :notebook: the eighth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh deleted file mode 100644 index 1a9fb9c3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi.sh +++ /dev/null @@ -1,37 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the second variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the third variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the forth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the fifth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the sixth variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 the seventh variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📓 the eighth variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md deleted file mode 100644 index db6dabfb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.md b/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.md deleted file mode 100644 index ce1579a3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: val3) -- :notebook: the variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val4) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val5) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.sh b/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.sh deleted file mode 100644 index 2b1c2a8e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_6string_multi_length.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ val3) -┗━━ 📓 the variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ val4) - ┣━━ string2 ◀ loaded from rougail-test (⏳ val5) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md deleted file mode 100644 index 7974ca1b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.md deleted file mode 100644 index 43e19150..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh deleted file mode 100644 index 580c6eba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md deleted file mode 100644 index 9042903f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.md deleted file mode 100644 index 364a85c4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote'") - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh deleted file mode 100644 index c622b332..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_doublequote2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote'") - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md deleted file mode 100644 index 33da1434..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.md b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.md deleted file mode 100644 index 89ae9bc4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: quote') - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh b/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh deleted file mode 100644 index 09cf19be..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_7value_multi_quote.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ quote') - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md deleted file mode 100644 index 24d1736f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.md b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.md deleted file mode 100644 index 46dfeff6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh deleted file mode 100644 index c86f0881..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_8calculation_information_multi.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md deleted file mode 100644 index f2fff686..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.md deleted file mode 100644 index 2382d828..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh deleted file mode 100644 index d136bfab..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_multi.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ a) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ b) -┃ ┗━━ string3 ◀ loaded from rougail-test (⏳ c) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md deleted file mode 100644 index c8b8b854..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.md b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.md deleted file mode 100644 index 586b2381..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.sh deleted file mode 100644 index 0e05eefe..00000000 --- a/tests/results/test_read_write_mandatory_secrets/01_9choice_variable_optional.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md b/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md deleted file mode 100644 index 7659b9a1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/02_0tags.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: the first variable: [- string1 -] ← loaded from rougail-test -- :notebook: the second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/02_0tags.md b/tests/results/test_read_write_mandatory_secrets/02_0tags.md deleted file mode 100644 index 2c89fd30..00000000 --- a/tests/results/test_read_write_mandatory_secrets/02_0tags.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: the first variable: string1 ← loaded from rougail-test -- :notebook: the second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/02_0tags.sh b/tests/results/test_read_write_mandatory_secrets/02_0tags.sh deleted file mode 100644 index 5119d901..00000000 --- a/tests/results/test_read_write_mandatory_secrets/02_0tags.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 the first variable: string1 ◀ loaded from rougail-test -┗━━ 📓 the second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md deleted file mode 100644 index ee97f7cd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param.md deleted file mode 100644 index f0d07715..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited number: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh b/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh deleted file mode 100644 index 053465dd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited number: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md deleted file mode 100644 index 234a5b5f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.md b/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.md deleted file mode 100644 index 67873679..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A limited integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.sh b/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.sh deleted file mode 100644 index 695cea51..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_0type_param_integer.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A limited integer: 1 ◀ loaded from rougail-test (⏳ 10) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md deleted file mode 100644 index e1a60ad6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: an auto save variable: [- no -] diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.md deleted file mode 100644 index 18a70157..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: an auto save variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh deleted file mode 100644 index 56bd3b1f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 an auto save variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md deleted file mode 100644 index 469ed912..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- no -] diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.md deleted file mode 100644 index 093d07d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh deleted file mode 100644 index 31019354..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md deleted file mode 100644 index b6f6045b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- yes -] diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md deleted file mode 100644 index 9cad597b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: yes diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh deleted file mode 100644 index 6f25cf6c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_calculated_hidden.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: yes diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.md b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1auto_save_and_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md deleted file mode 100644 index f4e039fd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md deleted file mode 100644 index efa5e345..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh deleted file mode 100644 index b16769c3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md deleted file mode 100644 index 1344e520..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md deleted file mode 100644 index 9900783e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh deleted file mode 100644 index c7980521..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_3.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md deleted file mode 100644 index d9a452de..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md deleted file mode 100644 index bfd382d2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: string1 ← loaded from rougail-test -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh deleted file mode 100644 index 52b2ac9e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_4.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md deleted file mode 100644 index fefd8edb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md deleted file mode 100644 index 89ed9a83..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh deleted file mode 100644 index fb486f3c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_5.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md deleted file mode 100644 index 94af01bb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md deleted file mode 100644 index d5b56133..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh b/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh deleted file mode 100644 index 46192c54..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_1default_calculation_hidden_6.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md deleted file mode 100644 index 46e2de93..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md deleted file mode 100644 index 1faa8462..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a conditional variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh deleted file mode 100644 index ac23b242..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_boolean.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a conditional variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md deleted file mode 100644 index bf967002..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.md deleted file mode 100644 index de404f2a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh deleted file mode 100644 index bf7ddb97..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md deleted file mode 100644 index 1c4b63d9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md deleted file mode 100644 index 3c0b5916..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh deleted file mode 100644 index 10f475dc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_optional_default.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) -┗━━ 📓 a first variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable11.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md deleted file mode 100644 index f38884ea..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md deleted file mode 100644 index b10ca8da..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh deleted file mode 100644 index 770895b7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable3.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md deleted file mode 100644 index 2bfd3c07..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md deleted file mode 100644 index f17f3292..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh deleted file mode 100644 index 23e7f59f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable4.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable5.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable6.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable7.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable8.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable9.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md deleted file mode 100644 index 3395fd99..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md deleted file mode 100644 index c743f59b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh b/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh deleted file mode 100644 index 7f222995..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable_multi.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md deleted file mode 100644 index 0174f065..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators.md b/tests/results/test_read_write_mandatory_secrets/04_5validators.md deleted file mode 100644 index 12a8f33c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators.sh deleted file mode 100644 index ea9b04d3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md deleted file mode 100644 index 42963e31..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- another_value -] ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.md deleted file mode 100644 index e3a0a748..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: another_value ← loaded from rougail-test (:hourglass_flowing_sand: oui) -- :notebook: A second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh deleted file mode 100644 index c928da68..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_differ.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: another_value ◀ loaded from rougail-test (⏳ oui) -┗━━ 📓 A second variable: string1 ◀ loaded from rougail-test (⏳ no) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md deleted file mode 100644 index 80c92a68..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.md deleted file mode 100644 index 5604494f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh deleted file mode 100644 index e75b040f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ no) - ┣━━ string2 ◀ loaded from rougail-test (⏳ yes) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md deleted file mode 100644 index 4f2aedad..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.md deleted file mode 100644 index 4835d09e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: no) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh deleted file mode 100644 index 3a83e2d5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi2.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ val1 ◀ loaded from rougail-test (⏳ no) - ┗━━ val2 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md deleted file mode 100644 index f3a2d97a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - [- 0 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.md deleted file mode 100644 index 748fbe89..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a second variable: - - 0 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - (:hourglass_flowing_sand: 1) - - (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.sh deleted file mode 100644 index 37efa90d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_multi3.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a second variable: - ┣━━ 0 ◀ loaded from rougail-test (⏳ 0) - ┣━━ (⏳ 1) - ┗━━ (⏳ 2) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md deleted file mode 100644 index 2d362be2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.md b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.md deleted file mode 100644 index 0b25c472..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: An integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.sh b/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.sh deleted file mode 100644 index 18bdb133..00000000 --- a/tests/results/test_read_write_mandatory_secrets/04_5validators_warnings_all.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 An integer: 1 ◀ loaded from rougail-test (⏳ 1000) diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh b/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_not_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.md b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh b/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/05_0multi_uniq.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md deleted file mode 100644 index 4fc539eb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- no -] diff --git a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.md b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.md deleted file mode 100644 index 517523ba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh b/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh deleted file mode 100644 index 01150e25..00000000 --- a/tests/results/test_read_write_mandatory_secrets/12_1auto_save_expert.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: no diff --git a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md deleted file mode 100644 index 87010fc4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Redefined: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.md b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.md deleted file mode 100644 index ddc8861c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Redefined: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh b/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh deleted file mode 100644 index d34dc9cf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_0redefine_description.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Redefined: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.md b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_calculation.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.md b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_read_write_mandatory_secrets/16_2family_redefine_disabled.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md deleted file mode 100644 index 582e4ddb..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: var1: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.md b/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.md deleted file mode 100644 index 5b5104e5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: var1: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.sh b/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.sh deleted file mode 100644 index b8da1cea..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_3family_empty_at_ends.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┗━━ 📓 var1: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md deleted file mode 100644 index 61200957..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.md b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.md deleted file mode 100644 index 7513b68b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a new variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh b/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh deleted file mode 100644 index f5b51d27..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5exists_nonexists.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.md b/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_5exists_redefine.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_calculation.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md deleted file mode 100644 index 353e222d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- a -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.md deleted file mode 100644 index 5db72d9a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: a ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh deleted file mode 100644 index 3a629191..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_choice.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: a ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md deleted file mode 100644 index 02f6c08c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.md deleted file mode 100644 index 858ec8ab..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh deleted file mode 100644 index fc585fdd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md deleted file mode 100644 index 21fdfad3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.md deleted file mode 100644 index a2b3a64d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh deleted file mode 100644 index 139286d4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_default_calculation.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md deleted file mode 100644 index a69c29c3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.md deleted file mode 100644 index b159751c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh deleted file mode 100644 index bb08133f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 new description - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md deleted file mode 100644 index 6c1c3743..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.md deleted file mode 100644 index 9ee7daa3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :notebook: redefine help: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh deleted file mode 100644 index fd4905f8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_help.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 redefine help: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md deleted file mode 100644 index 3a2267db..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.md deleted file mode 100644 index 7a2a9824..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh deleted file mode 100644 index 81cbfed1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_multi.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 a variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ non) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh b/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5redefine_remove_disable_calculation.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md deleted file mode 100644 index 2c9ecbe5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- test1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.md b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.md deleted file mode 100644 index 6626d28c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: test1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :notebook: a third variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh deleted file mode 100644 index c9dac4d6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_5test_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: test1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: test1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md deleted file mode 100644 index 77d8d999..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: [- a -] ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.md b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.md deleted file mode 100644 index 380d05d1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A choice: a ← loaded from rougail-test (:hourglass_flowing_sand: c) diff --git a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh b/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh deleted file mode 100644 index 34e3ba21..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6choice_redefine.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 A choice: a ◀ loaded from rougail-test (⏳ c) diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_6exists_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_family.md b/tests/results/test_read_write_mandatory_secrets/16_6exists_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_family.sh b/tests/results/test_read_write_mandatory_secrets/16_6exists_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md deleted file mode 100644 index f915f7d0..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: new description - - :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.md b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.md deleted file mode 100644 index 8a0e5620..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: new description - - :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a second family - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh b/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh deleted file mode 100644 index 9e86f819..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16_6exists_redefine_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 new description -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a second family - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md b/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md deleted file mode 100644 index 4be431c1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16exists_exists.gitlab.md +++ /dev/null @@ -1,7 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: Description: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16exists_exists.md b/tests/results/test_read_write_mandatory_secrets/16exists_exists.md deleted file mode 100644 index 4c470e07..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16exists_exists.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: Description: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh b/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh deleted file mode 100644 index ab907b7a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/16exists_exists.sh +++ /dev/null @@ -1,5 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📓 Description: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.gitlab.md b/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.md b/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.sh b/tests/results/test_read_write_mandatory_secrets/17_5redefine_leadership.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0empty_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0empty_family.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0empty_family.md b/tests/results/test_read_write_mandatory_secrets/20_0empty_family.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0empty_family.sh b/tests/results/test_read_write_mandatory_secrets/20_0empty_family.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md deleted file mode 100644 index 7c84733e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0family_append.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: [- string1 -] ← loaded from rougail-test - - :notebook: The second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_append.md b/tests/results/test_read_write_mandatory_secrets/20_0family_append.md deleted file mode 100644 index a8b9719e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0family_append.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A family - - :notebook: The first variable: string1 ← loaded from rougail-test - - :notebook: The second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh b/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh deleted file mode 100644 index a13b229a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0family_append.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A family - ┣━━ 📓 The first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 The second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.md b/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.sh b/tests/results/test_read_write_mandatory_secrets/20_0family_underscore.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_basic.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md deleted file mode 100644 index 1d878951..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.md deleted file mode 100644 index 2ab9180f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a family - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh deleted file mode 100644 index cd9defff..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_expert.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📂 a sub family -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md deleted file mode 100644 index 94d1798c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.md b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.md deleted file mode 100644 index 70a49206..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: a variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh b/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh deleted file mode 100644 index d04191f9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0multi_family_order.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┣━━ 📂 a sub family - ┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md deleted file mode 100644 index 5ca71d92..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- yes -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.md b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.md deleted file mode 100644 index 0cafcb81..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: yes ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh b/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh deleted file mode 100644 index 32cb5377..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_0validators_differ_redefine.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test (⏳ no) -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: yes ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.md b/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.sh b/tests/results/test_read_write_mandatory_secrets/20_1empty_subfamily.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md deleted file mode 100644 index bd1df785..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test - - :notebook: a variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md deleted file mode 100644 index a8e625d2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: dynamic: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test - - :notebook: a variable: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh deleted file mode 100644 index f0e10846..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_dynamic.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┣━━ 📓 dynamic: - ┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) - ┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) - ┃ ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📓 a variable: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md deleted file mode 100644 index 2df94454..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.md b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.md deleted file mode 100644 index 3a136486..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: my_family - - :notebook: default: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.sh b/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.sh deleted file mode 100644 index 4244d0a5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_2family_looks_like_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 my_family - ┗━━ 📓 default: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md deleted file mode 100644 index cbf4068a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_7help_family.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: the first family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_7help_family.md b/tests/results/test_read_write_mandatory_secrets/20_7help_family.md deleted file mode 100644 index 41f2acc7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_7help_family.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: the first family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: the second family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_7help_family.sh b/tests/results/test_read_write_mandatory_secrets/20_7help_family.sh deleted file mode 100644 index c9bbc685..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_7help_family.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 the first family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 the second family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md deleted file mode 100644 index a560c5af..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: family - - :notebook: a first variable: [- string1 -] ← loaded from rougail-test - - :notebook: a second variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.md b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.md deleted file mode 100644 index e67bf81e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: family - - :notebook: a first variable: string1 ← loaded from rougail-test - - :notebook: a second variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh b/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh deleted file mode 100644 index ac1e709e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9default_information_parent.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 family - ┣━━ 📓 a first variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md b/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md deleted file mode 100644 index ded677c1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: [- string6 -] ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: [- string5 -] ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.md b/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.md deleted file mode 100644 index 1d3f37e4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: first variable: string1 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a second variable: string6 ← loaded from rougail-test - - :open_file_folder: a sub family - - :notebook: third variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test -- :open_file_folder: a family - - :notebook: a variable2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - :notebook: var3: string5 ← loaded from rougail-test (:hourglass_flowing_sand: string4) - - :open_file_folder: a sub family - - :notebook: fourth variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string6) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string5) diff --git a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.sh b/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.sh deleted file mode 100644 index 9c784385..00000000 --- a/tests/results/test_read_write_mandatory_secrets/20_9family_absolute.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 first variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a family -┃ ┣━━ 📓 a second variable: string6 ◀ loaded from rougail-test -┃ ┗━━ 📂 a sub family -┃  ┗━━ 📓 third variable: -┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -┃   ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a family - ┣━━ 📓 a variable2: string1 ◀ loaded from rougail-test (⏳ string6) - ┣━━ 📓 var3: string5 ◀ loaded from rougail-test (⏳ string4) - ┗━━ 📂 a sub family -  ┗━━ 📓 fourth variable: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string6) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string5) diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md deleted file mode 100644 index 6887d877..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md deleted file mode 100644 index f48c6a65..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh deleted file mode 100644 index 85c11674..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md deleted file mode 100644 index 952bc256..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.gitlab.md +++ /dev/null @@ -1,8 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md deleted file mode 100644 index dd617a14..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh deleted file mode 100644 index 42a2b909..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_condition_variable_sub_family.sh +++ /dev/null @@ -1,6 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📓 the variable use has condition: true ◀ loaded from rougail-test (⏳ true) diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md deleted file mode 100644 index 010bce1f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md deleted file mode 100644 index b65ff4d8..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: the variable use has condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: possibly hidden family - - :open_file_folder: a subfamily - - :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh deleted file mode 100644 index 95a9d262..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_hidden_param_condition_sub_family.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 the variable use has condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 possibly hidden family - ┗━━ 📂 a subfamily -  ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md deleted file mode 100644 index 49d2b488..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.md deleted file mode 100644 index fede3321..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh deleted file mode 100644 index 85c8c02c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md deleted file mode 100644 index 14412f5d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md deleted file mode 100644 index b1c4a25f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: true ← loaded from rougail-test (:hourglass_flowing_sand: true) -- :notebook: a variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh b/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh deleted file mode 100644 index 2970d2e4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_0family_mandatory_condition_variable.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: true ◀ loaded from rougail-test (⏳ true) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md deleted file mode 100644 index 29c01c5b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: [- 5 -] ← loaded from rougail-test - - :notebook: a second integer: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.md b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.md deleted file mode 100644 index 1beb7638..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: a first integer: 5 ← loaded from rougail-test - - :notebook: a second integer: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 1) diff --git a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh deleted file mode 100644 index 67ce7188..00000000 --- a/tests/results/test_read_write_mandatory_secrets/24_7validators_variable_optional.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┣━━ 📓 a first integer: 5 ◀ loaded from rougail-test - ┗━━ 📓 a second integer: 1 ◀ loaded from rougail-test (⏳ 1) diff --git a/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.md b/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh b/tests/results/test_read_write_mandatory_secrets/24_family_disabled_var_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md deleted file mode 100644 index 9598589d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.md deleted file mode 100644 index d30f5670..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :notebook: an other follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :notebook: an other follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test - - :notebook: an other follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh deleted file mode 100644 index f46091fc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_diff_name.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md deleted file mode 100644 index 7e5f52ab..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.gitlab.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md deleted file mode 100644 index f880cd7e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :notebook: a second follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh deleted file mode 100644 index a0bc32a9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_calculation.sh +++ /dev/null @@ -1,18 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┃ ┗━━ 📓 a second follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) -  ┗━━ 📓 a second follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md deleted file mode 100644 index 7d310879..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower with default value: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.md deleted file mode 100644 index 95c37305..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower with default value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower with default value: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower with default value: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh deleted file mode 100644 index 5fb71c9a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_follower_default_value.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string1 ◀ loaded from rougail-test (⏳ value) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower with default value: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower with default value: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md deleted file mode 100644 index 1709a587..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.md deleted file mode 100644 index 36414b39..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.sh deleted file mode 100644 index fd689b3a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_follower.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md deleted file mode 100644 index 04e45fb3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.gitlab.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test - - :notebook: follower1: [- string1 -] ← loaded from rougail-test - - :notebook: follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test - - :notebook: follower1: [- string2 -] ← loaded from rougail-test - - :notebook: follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower1: [- string3 -] ← loaded from rougail-test - - :notebook: follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md deleted file mode 100644 index 63e543a5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: general - - :notebook: No change: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) -- :open_file_folder: general1 - - :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test - - :notebook: follower1: string1 ← loaded from rougail-test - - :notebook: follower2: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test - - :notebook: follower1: string2 ← loaded from rougail-test - - :notebook: follower2: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower1: string3 ← loaded from rougail-test - - :notebook: follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh deleted file mode 100644 index e088b449..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_leader_not_multi.sh +++ /dev/null @@ -1,21 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 general -┃ ┗━━ 📓 No change: string1 ◀ loaded from rougail-test (⏳ non) -┗━━ 📂 general1 - ┗━━ 📂 leader -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 leader -  ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 leader -   ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md deleted file mode 100644 index d43eb4bf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.md b/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.md deleted file mode 100644 index 88453886..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: val1 ← loaded from rougail-test (:hourglass_flowing_sand: value_1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: val2 ← loaded from rougail-test (:hourglass_flowing_sand: value_2) - - :notebook: a follower: string2 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.sh b/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.sh deleted file mode 100644 index ee887294..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_0leadership_reduce.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: val1 ◀ loaded from rougail-test (⏳ value_1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: val2 ◀ loaded from rougail-test (⏳ value_2) -  ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md deleted file mode 100644 index 59359dfe..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.gitlab.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: [- string1 -] ← loaded from rougail-test - - :notebook: the follower1: [- string1 -] ← loaded from rougail-test - - :notebook: the follower2: [- string1 -] ← loaded from rougail-test - - :notebook: the follower3: [- string1 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string2 -] ← loaded from rougail-test - - :notebook: the follower1: [- string2 -] ← loaded from rougail-test - - :notebook: the follower2: [- string2 -] ← loaded from rougail-test - - :notebook: the follower3: [- string2 -] ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: [- string3 -] ← loaded from rougail-test - - :notebook: the follower1: [- string3 -] ← loaded from rougail-test - - :notebook: the follower2: [- string3 -] ← loaded from rougail-test - - :notebook: the follower3: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.md b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.md deleted file mode 100644 index 39a9eb94..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.md +++ /dev/null @@ -1,23 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: the leader - - :notebook: the leader: string1 ← loaded from rougail-test - - :notebook: the follower1: string1 ← loaded from rougail-test - - :notebook: the follower2: string1 ← loaded from rougail-test - - :notebook: the follower3: string1 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string2 ← loaded from rougail-test - - :notebook: the follower1: string2 ← loaded from rougail-test - - :notebook: the follower2: string2 ← loaded from rougail-test - - :notebook: the follower3: string2 ← loaded from rougail-test - - :open_file_folder: the leader - - :notebook: the leader: string3 ← loaded from rougail-test - - :notebook: the follower1: string3 ← loaded from rougail-test - - :notebook: the follower2: string3 ← loaded from rougail-test - - :notebook: the follower3: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh b/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh deleted file mode 100644 index 38bde772..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_1leadership_append_follower.sh +++ /dev/null @@ -1,20 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string1 ◀ loaded from rougail-test - ┣━━ 📂 the leader - ┃ ┣━━ 📓 the leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower1: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 the follower2: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 the follower3: string2 ◀ loaded from rougail-test - ┗━━ 📂 the leader -  ┣━━ 📓 the leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower1: string3 ◀ loaded from rougail-test -  ┣━━ 📓 the follower2: string3 ◀ loaded from rougail-test -  ┗━━ 📓 the follower3: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.sh b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md deleted file mode 100644 index 162b2622..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: [- 1 -] ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- 2 -] ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: [- 3 -] ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md deleted file mode 100644 index 87cdc780..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: a follower: 1 ← loaded from rougail-test (:hourglass_flowing_sand: 0) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: 2 ← loaded from rougail-test (:hourglass_flowing_sand: 1) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: c) - - :notebook: a follower: 3 ← loaded from rougail-test (:hourglass_flowing_sand: 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh b/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh deleted file mode 100644 index 58618623..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_2leadership_calculation_index_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ a) - ┃ ┗━━ 📓 a follower: 1 ◀ loaded from rougail-test (⏳ 0) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: 2 ◀ loaded from rougail-test (⏳ 1) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ c) -  ┗━━ 📓 a follower: 3 ◀ loaded from rougail-test (⏳ 2) diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md deleted file mode 100644 index 3ace6151..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: The first follower: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :notebook: The second follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md deleted file mode 100644 index cfa9a139..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: The first follower: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :notebook: The second follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh deleted file mode 100644 index cbee1782..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_6leadership_follower_multi_no_mandatory.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 The first follower: - ┃ ┃ ┣━━ string1 ◀ loaded from rougail-test - ┃ ┃ ┣━━ string2 ◀ loaded from rougail-test - ┃ ┃ ┗━━ string3 ◀ loaded from rougail-test - ┃ ┗━━ 📓 The second follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ value) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 The first follower: -  ┃ ┣━━ string1 ◀ loaded from rougail-test -  ┃ ┣━━ string2 ◀ loaded from rougail-test -  ┃ ┗━━ string3 ◀ loaded from rougail-test -  ┗━━ 📓 The second follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ value) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md deleted file mode 100644 index cdab71d7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - [- true -] ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.md deleted file mode 100644 index 8f229c20..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a boolean variable: true ← loaded from rougail-test (:hourglass_flowing_sand: false) -- :notebook: a first multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: true) - - (:hourglass_flowing_sand: false) -- :notebook: a second multi variable: - - true ← loaded from rougail-test (:hourglass_flowing_sand: false) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh deleted file mode 100644 index fa059347..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_boolean.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a boolean variable: true ◀ loaded from rougail-test (⏳ false) -┣━━ 📓 a first multi variable: -┃ ┣━━ true ◀ loaded from rougail-test (⏳ true) -┃ ┗━━ (⏳ false) -┗━━ 📓 a second multi variable: - ┗━━ true ◀ loaded from rougail-test (⏳ false) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md deleted file mode 100644 index 9ab6f966..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.md deleted file mode 100644 index ea76a3f7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a first variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :notebook: a third variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh deleted file mode 100644 index e873131f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a first variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📓 a third variable: string1 ◀ loaded from rougail-test (⏳ yes) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md deleted file mode 100644 index af08eb4f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md deleted file mode 100644 index e9522140..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a family - - :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh deleted file mode 100644 index 8d9594cf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a family - ┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md deleted file mode 100644 index d8f02022..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md deleted file mode 100644 index 9dc630c0..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: first family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: second family - - :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh b/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh deleted file mode 100644 index 12a80d56..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_8calculation_multi_variable_parent2.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 first family -┃ ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 second family - ┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md deleted file mode 100644 index db88a660..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.gitlab.md +++ /dev/null @@ -1,26 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md b/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md deleted file mode 100644 index fa4bb5d7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh b/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh deleted file mode 100644 index c1db45ba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9calculation_variable_leader_follower_multi_inside.sh +++ /dev/null @@ -1,24 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string2) - ┃  ┣━━ string2 ◀ loaded from rougail-test - ┃  ┗━━ string3 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) -   ┣━━ string2 ◀ loaded from rougail-test -   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md deleted file mode 100644 index 19c6318b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md deleted file mode 100644 index cf5fbdfd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh deleted file mode 100644 index 471eb20e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-first.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md deleted file mode 100644 index cfd5439a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md deleted file mode 100644 index 8750db38..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh deleted file mode 100644 index 2faff4bf..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-last.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string3) - ┣━━ string2 ◀ loaded from rougail-test - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md deleted file mode 100644 index 23c2ad34..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: [- string3 -] ← loaded from rougail-test - - :notebook: follower: [- string3 -] ← loaded from rougail-test -- :notebook: variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md deleted file mode 100644 index d64f4d5b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: leader - - :open_file_folder: leader - - :notebook: leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :notebook: follower: string1 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: follower: string2 ← loaded from rougail-test - - :open_file_folder: leader - - :notebook: leader: string3 ← loaded from rougail-test - - :notebook: follower: string3 ← loaded from rougail-test -- :notebook: variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh deleted file mode 100644 index 379f6858..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower-no-mandatory.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 leader -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string1 ◀ loaded from rougail-test (⏳ a) -┃ ┃ ┗━━ 📓 follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 leader -┃ ┃ ┣━━ 📓 leader: string2 ◀ loaded from rougail-test (⏳ b) -┃ ┃ ┗━━ 📓 follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 leader -┃  ┣━━ 📓 leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 follower: string3 ◀ loaded from rougail-test -┗━━ 📓 variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-follower.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md deleted file mode 100644 index 6ff0ca56..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md deleted file mode 100644 index 9b1f660b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh deleted file mode 100644 index 91efcba4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-first.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md deleted file mode 100644 index ac2dde3e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.gitlab.md +++ /dev/null @@ -1,21 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md deleted file mode 100644 index d41eea3b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.md +++ /dev/null @@ -1,22 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh deleted file mode 100644 index 49e9a5b9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader-last.sh +++ /dev/null @@ -1,19 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: string1 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md deleted file mode 100644 index 7f22f240..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md deleted file mode 100644 index 764d76f9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh deleted file mode 100644 index 89a38921..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-outside-leader.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) -┃ ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -┃  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) -┗━━ 📓 a calculated variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md deleted file mode 100644 index 149cb498..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.gitlab.md +++ /dev/null @@ -1,24 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.md deleted file mode 100644 index 5ba581c7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.md +++ /dev/null @@ -1,25 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a calculated variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - string3 ← loaded from rougail-test -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val21) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val11) - - :notebook: an other follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val21) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh deleted file mode 100644 index 6b4cdee9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable.sh +++ /dev/null @@ -1,22 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a calculated variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┣━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string1 ◀ loaded from rougail-test (⏳ val21) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┣━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val11) - ┃ ┗━━ 📓 an other follower: string2 ◀ loaded from rougail-test (⏳ val21) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┣━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val11) -  ┗━━ 📓 an other follower: string3 ◀ loaded from rougail-test (⏳ val21) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md deleted file mode 100644 index 37bf1d4d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.gitlab.md +++ /dev/null @@ -1,27 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md deleted file mode 100644 index 3dcd76a1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.md +++ /dev/null @@ -1,28 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - :notebook: a follower: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: val) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh deleted file mode 100644 index ad0e2301..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower.sh +++ /dev/null @@ -1,25 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ string1) - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test (⏳ val) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ string2) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ val) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test (⏳ string3) -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md deleted file mode 100644 index 81fbb1fa..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.gitlab.md +++ /dev/null @@ -1,36 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md deleted file mode 100644 index 06e478ec..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test -- :open_file_folder: a second leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: value1) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value2) - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) - - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh b/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh deleted file mode 100644 index 5c19cd76..00000000 --- a/tests/results/test_read_write_mandatory_secrets/40_9leadership-calculation-variable_leader_follower_not_same.sh +++ /dev/null @@ -1,34 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a leadership -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) -┃ ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test -┃ ┣━━ 📂 a leader -┃ ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) -┃ ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test -┃ ┗━━ 📂 a leader -┃  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test -┗━━ 📂 a second leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test (⏳ value1) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test (⏳ value2) - ┃ ┗━━ 📓 a follower: - ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) - ┃  ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: -   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) -   ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) -   ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md deleted file mode 100644 index 629de092..00000000 --- a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: [- string1 -] ← loaded from rougail-test - - :notebook: A follower: [- a -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string2 -] ← loaded from rougail-test - - :notebook: A follower: [- b -] ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: [- string3 -] ← loaded from rougail-test - - :notebook: A follower: [- c -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.md b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.md deleted file mode 100644 index 72715a35..00000000 --- a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: The leadership - - :open_file_folder: The leader - - :notebook: The leader: string1 ← loaded from rougail-test - - :notebook: A follower: a ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string2 ← loaded from rougail-test - - :notebook: A follower: b ← loaded from rougail-test - - :open_file_folder: The leader - - :notebook: The leader: string3 ← loaded from rougail-test - - :notebook: A follower: c ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh b/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh deleted file mode 100644 index 4498a73f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/41_0choice_leader.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 The leadership - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: a ◀ loaded from rougail-test - ┣━━ 📂 The leader - ┃ ┣━━ 📓 The leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 A follower: b ◀ loaded from rougail-test - ┗━━ 📂 The leader -  ┣━━ 📓 The leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 A follower: c ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.md b/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.sh b/tests/results/test_read_write_mandatory_secrets/44_0leadership_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.md b/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh b/tests/results/test_read_write_mandatory_secrets/44_0leadership_leader_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.md b/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh b/tests/results/test_read_write_mandatory_secrets/44_1leadership_append_hidden_follower.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md deleted file mode 100644 index ee9d9dca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md b/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md deleted file mode 100644 index b2d08e0e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: aleader - - :notebook: aleader: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a) - - :open_file_folder: aleader - - :notebook: aleader: string2 ← loaded from rougail-test (:hourglass_flowing_sand: b) - - :notebook: a follower: string2 ← loaded from rougail-test (:hourglass_flowing_sand: value) - - :open_file_folder: aleader - - :notebook: aleader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test (:hourglass_flowing_sand: value) diff --git a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh b/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh deleted file mode 100644 index a7273d4f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4disabled_calcultion_follower_index.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 aleader - ┃ ┗━━ 📓 aleader: string1 ◀ loaded from rougail-test (⏳ a) - ┣━━ 📂 aleader - ┃ ┣━━ 📓 aleader: string2 ◀ loaded from rougail-test (⏳ b) - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test (⏳ value) - ┗━━ 📂 aleader -  ┣━━ 📓 aleader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test (⏳ value) diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md deleted file mode 100644 index 165f740b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md deleted file mode 100644 index 89acad40..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh b/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh deleted file mode 100644 index 20accbc7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_4leadership_mandatory_follower.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md deleted file mode 100644 index 0db07d7b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md deleted file mode 100644 index a2404e68..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: no) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh b/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh deleted file mode 100644 index a2636a45..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_5leadership_leader_hidden_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ no) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md deleted file mode 100644 index d4cd7eb2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.gitlab.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md deleted file mode 100644 index a58b3f36..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a condition: string1 ← loaded from rougail-test (:hourglass_flowing_sand: yes) -- :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh b/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh deleted file mode 100644 index fa331e78..00000000 --- a/tests/results/test_read_write_mandatory_secrets/44_6leadership_follower_disabled_calculation.sh +++ /dev/null @@ -1,16 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a condition: string1 ◀ loaded from rougail-test (⏳ yes) -┗━━ 📂 a leadership - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string1 ◀ loaded from rougail-test - ┣━━ 📂 a leader - ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower: string2 ◀ loaded from rougail-test - ┗━━ 📂 a leader -  ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md deleted file mode 100644 index b165686f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.md deleted file mode 100644 index 20726ad9..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh deleted file mode 100644 index b1f9fc01..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_1_1_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md deleted file mode 100644 index af851262..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.md deleted file mode 100644 index 08a9535a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh deleted file mode 100644 index 6fbf1253..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_empty.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md deleted file mode 100644 index d1c55ac7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val.1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - [- val.2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md deleted file mode 100644 index efb43e1b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val.1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - val.2 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val.2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh deleted file mode 100644 index fa8ff1f3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_forbidden_char.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val.1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ val.2 ◀ loaded from rougail-test (⏳ val.2) -┣━━ 📂 A dynamic family -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.1) -┗━━ 📂 A dynamic family - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val.2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md deleted file mode 100644 index d89bbdb3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.md deleted file mode 100644 index 812b4d57..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh deleted file mode 100644 index eb42dd7e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md deleted file mode 100644 index bc4e0c06..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md deleted file mode 100644 index 5a2dd6ba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: var: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh deleted file mode 100644 index d21a390e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_no_description_empty.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 var: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 var: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md deleted file mode 100644 index 260b7a96..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md deleted file mode 100644 index aac7c507..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh deleted file mode 100644 index f8e82ed5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_source_hidden.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md deleted file mode 100644 index 20e60b3c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.md deleted file mode 100644 index dc79f348..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside a dynamic family: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh deleted file mode 100644 index 7aa2954b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_static.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside a dynamic family: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md deleted file mode 100644 index 9b805417..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.gitlab.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.md deleted file mode 100644 index aac321dc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh deleted file mode 100644 index 793d33ba..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_test.sh +++ /dev/null @@ -1,11 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md deleted file mode 100644 index 3eca313d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- Val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - [- VAL2 -] ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md deleted file mode 100644 index f398f627..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - Val1 ← loaded from rougail-test (:hourglass_flowing_sand: Val1) - - VAL2 ← loaded from rougail-test (:hourglass_flowing_sand: VAL2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh deleted file mode 100644 index ec5aa3ca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_upper_char.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ Val1 ◀ loaded from rougail-test (⏳ Val1) -┃ ┗━━ VAL2 ◀ loaded from rougail-test (⏳ VAL2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md deleted file mode 100644 index 4d10ad3e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test - - [- string2 -] ← loaded from rougail-test - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md deleted file mode 100644 index 96839d92..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test - - string2 ← loaded from rougail-test - - string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh deleted file mode 100644 index 6345b4d7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test -┃ ┣━━ string2 ◀ loaded from rougail-test -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md deleted file mode 100644 index 5eb83d83..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md deleted file mode 100644 index 6dd84d40..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh deleted file mode 100644 index c263e940..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_optional.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 a dynamic family - ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md deleted file mode 100644 index bc0e5952..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md deleted file mode 100644 index 720a9821..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh deleted file mode 100644 index b608466a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md deleted file mode 100644 index d2943697..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md deleted file mode 100644 index 9aa6b202..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val1: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable with suffix val2: string1 ← loaded from rougail-test (:hourglass_flowing_sand: a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh deleted file mode 100644 index 132f62e5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_dynamic_variable_suffix_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable with suffix val1: string1 ◀ loaded from rougail-test (⏳ a value) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable with suffix val2: string1 ◀ loaded from rougail-test (⏳ a value) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_empty.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_empty.md b/tests/results/test_read_write_mandatory_secrets/60_0family_empty.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_empty.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.gitlab.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.md b/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.md deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_hidden.sh deleted file mode 100644 index e69de29b..00000000 diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md deleted file mode 100644 index e6cd7fa4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.gitlab.md +++ /dev/null @@ -1,9 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.md b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.md deleted file mode 100644 index f76c8324..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: a family - - :notebook: A variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: non) diff --git a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh b/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh deleted file mode 100644 index b4378976..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_0family_mode.sh +++ /dev/null @@ -1,7 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┗━━ 📂 a family - ┗━━ 📓 A variable: string1 ◀ loaded from rougail-test (⏳ non) diff --git a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md deleted file mode 100644 index b45560fd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - [- string3 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.md b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.md deleted file mode 100644 index fa7f0864..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) - - string3 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: A dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh b/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh deleted file mode 100644 index 92019a09..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_1family_dynamic_jinja.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) -┃ ┣━━ string2 ◀ loaded from rougail-test (⏳ val2) -┃ ┗━━ string3 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📂 A dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md deleted file mode 100644 index 5af07e18..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md deleted file mode 100644 index 04e40e16..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh deleted file mode 100644 index 46f3925c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md deleted file mode 100644 index a147d524..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md deleted file mode 100644 index a1d2e634..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh deleted file mode 100644 index a792c807..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md deleted file mode 100644 index 5fdbf67a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md deleted file mode 100644 index ce8a68f4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :open_file_folder: a family inside dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a varible outside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh deleted file mode 100644 index e07d8b43..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_2_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family inside dynamic family -┃  ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a varible outside dynamic family: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md deleted file mode 100644 index 72143984..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.gitlab.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: [- string1 -] ← loaded from rougail-test -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md deleted file mode 100644 index 2bd02540..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.md +++ /dev/null @@ -1,18 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a family - - :notebook: with a variable: string1 ← loaded from rougail-test -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh deleted file mode 100644 index b7749f03..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_jinja_fill_sub_group_empty.sh +++ /dev/null @@ -1,15 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a family -┃  ┗━━ 📓 with a variable: string1 ◀ loaded from rougail-test -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md deleted file mode 100644 index da3b06ca..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md deleted file mode 100644 index 1e9d9e20..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh deleted file mode 100644 index 4d05d0b5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md deleted file mode 100644 index b6b7d9fc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md deleted file mode 100644 index a5865a38..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffx variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val) -- :notebook: a second variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh deleted file mode 100644 index 4e06aea3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_2family_dynamic_outside_calc_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffx variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test (⏳ val) -┗━━ 📓 a second variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md deleted file mode 100644 index 936caa53..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.gitlab.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: - - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md deleted file mode 100644 index 3a12c9e1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.md +++ /dev/null @@ -1,17 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: - - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh deleted file mode 100644 index 526482f2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_description.sh +++ /dev/null @@ -1,14 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: - ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) - ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) - ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md deleted file mode 100644 index bebc24fc..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md deleted file mode 100644 index 56a75dec..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh deleted file mode 100644 index 368aed0c..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md deleted file mode 100644 index 8c17123a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md deleted file mode 100644 index bf21995b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: Suffix has value: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh deleted file mode 100644 index 1ce047d1..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix2_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 a dynamic family - ┗━━ 📓 Suffix has value: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md deleted file mode 100644 index 3ee22e21..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [+ Default value +] -> - [- Modified value -] - -Variables: -- :notebook: dynval1: [+ {} +] -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md deleted file mode 100644 index e1f9e7c5..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Default value -> - Modified value - -Variables: -- :notebook: dynval1: {} -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh deleted file mode 100644 index f6dfd744..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_disabled.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Default value │ -│ Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 dynval1: {} -┗━━ 📂 dynval2 - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md deleted file mode 100644 index 1e9176a2..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md deleted file mode 100644 index 682154e6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh deleted file mode 100644 index d9c20648..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md deleted file mode 100644 index a453f8c4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.gitlab.md +++ /dev/null @@ -1,14 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md deleted file mode 100644 index 485ed622..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A identifier variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: A dynamic family - - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh deleted file mode 100644 index f7cd4f2f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_suffix_param_empty.sh +++ /dev/null @@ -1,12 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A identifier variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 A dynamic family -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) -┗━━ 📂 A dynamic family - ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md deleted file mode 100644 index bd37ad38..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md deleted file mode 100644 index 3b4c711d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh deleted file mode 100644 index 2c88b793..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md deleted file mode 100644 index 502177dd..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test - - :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md deleted file mode 100644 index ec4f12df..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test - - :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh deleted file mode 100644 index 4f9bb00f..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┃ ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📂 A dynamic famify for val2 - ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test - ┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md deleted file mode 100644 index 3dee4508..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.gitlab.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md deleted file mode 100644 index 4a3151fa..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh deleted file mode 100644 index ba054a06..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_disabled_outside.sh +++ /dev/null @@ -1,9 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md deleted file mode 100644 index 84f9b3c0..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test -- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md deleted file mode 100644 index ff0a9f55..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: A suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: dynval1 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: dynval2 - - :notebook: A dynamic variable: string1 ← loaded from rougail-test -- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh deleted file mode 100644 index 5d8b38a3..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_calc_variable_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 A suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 dynval1 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┣━━ 📂 dynval2 -┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md deleted file mode 100644 index a6f0137a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.gitlab.md +++ /dev/null @@ -1,10 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md deleted file mode 100644 index 90d3e3a7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.md +++ /dev/null @@ -1,11 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: a dynamic family - - :notebook: a variable: string1 ← loaded from rougail-test - - :open_file_folder: a family - - :notebook: a new variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh deleted file mode 100644 index 62ecb8f7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_hidden_suffix.sh +++ /dev/null @@ -1,8 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 a dynamic family - ┣━━ 📓 a variable: string1 ◀ loaded from rougail-test - ┗━━ 📂 a family -  ┗━━ 📓 a new variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md deleted file mode 100644 index c55d0ae6..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md deleted file mode 100644 index 6071368d..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh deleted file mode 100644 index 17e9909a..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md deleted file mode 100644 index 124eb013..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.gitlab.md +++ /dev/null @@ -1,15 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md deleted file mode 100644 index e925b544..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.md +++ /dev/null @@ -1,16 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: asuffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) -- :open_file_folder: a dynamic family - - :notebook: a variable inside dynamic family: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :notebook: a variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh deleted file mode 100644 index ddad282b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_5family_dynamic_variable_outside_suffix_empty.sh +++ /dev/null @@ -1,13 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 asuffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val1) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a variable inside dynamic family: string1 ◀ loaded from rougail-test (⏳ val2) -┗━━ 📓 a variable: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md deleted file mode 100644 index e7891e7b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.gitlab.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.md deleted file mode 100644 index 1531b7ff..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.md +++ /dev/null @@ -1,39 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) - - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh deleted file mode 100644 index ae685832..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership.sh +++ /dev/null @@ -1,36 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) -┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md deleted file mode 100644 index 2cb72da4..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.gitlab.md +++ /dev/null @@ -1,37 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :notebook: a suffix variable: - - [- val1 -] ← loaded from rougail-test - - [- val2 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md deleted file mode 100644 index 2bd221af..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.md +++ /dev/null @@ -1,38 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :notebook: a suffix variable: - - val1 ← loaded from rougail-test - - val2 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :open_file_folder: a leadership - - :open_file_folder: a leader - - :notebook: a leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: a leader - - :notebook: a leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh b/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh deleted file mode 100644 index a2c146ad..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_6family_dynamic_leadership_empty.sh +++ /dev/null @@ -1,35 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: -┃ ┣━━ val1 ◀ loaded from rougail-test -┃ ┗━━ val2 ◀ loaded from rougail-test -┣━━ 📂 a dynamic family -┃ ┗━━ 📂 a leadership -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -┃  ┣━━ 📂 a leader -┃  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -┃  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -┃  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -┃  ┗━━ 📂 a leader -┃   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -┃   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -┃   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📂 a leadership -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string1 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test -  ┣━━ 📂 a leader -  ┃ ┣━━ 📓 a leader: string2 ◀ loaded from rougail-test -  ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test -  ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test -  ┗━━ 📂 a leader -   ┣━━ 📓 a leader: string3 ◀ loaded from rougail-test -   ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -   ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md deleted file mode 100644 index 6a7898b7..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.gitlab.md +++ /dev/null @@ -1,12 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: [- string1 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md deleted file mode 100644 index 290574db..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.md +++ /dev/null @@ -1,13 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value -> - (:hourglass_flowing_sand: Original default value) - -Variables: -- :notebook: a suffix variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test -- :open_file_folder: a dynamic family - - :notebook: a dynamic variable: string1 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh b/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh deleted file mode 100644 index 54091b4b..00000000 --- a/tests/results/test_read_write_mandatory_secrets/60_9family_dynamic_calc_both.sh +++ /dev/null @@ -1,10 +0,0 @@ -╭────────────── Caption ───────────────╮ -│ Variable Modified value │ -│ (⏳ Original default value) │ -╰──────────────────────────────────────╯ -Variables: -┣━━ 📓 a suffix variable: string1 ◀ loaded from rougail-test (⏳ val2) -┣━━ 📂 a dynamic family -┃ ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test -┗━━ 📂 a dynamic family - ┗━━ 📓 a dynamic variable: string1 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md deleted file mode 100644 index 24be4030..00000000 --- a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.gitlab.md +++ /dev/null @@ -1,19 +0,0 @@ -> [!note] Caption: -> -> - Variable -> - [- Modified value -] - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: [- string1 -] ← loaded from rougail-test - - :notebook: a follower1: [- string1 -] ← loaded from rougail-test - - :notebook: a follower2: [- string1 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string2 -] ← loaded from rougail-test - - :notebook: a follower1: [- string2 -] ← loaded from rougail-test - - :notebook: a follower2: [- string2 -] ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: [- string3 -] ← loaded from rougail-test - - :notebook: a follower1: [- string3 -] ← loaded from rougail-test - - :notebook: a follower2: [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.md b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.md deleted file mode 100644 index 56af6e36..00000000 --- a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.md +++ /dev/null @@ -1,20 +0,0 @@ -> [!NOTE] -> -> **Caption:** -> - Variable -> - Modified value - -Variables: -- :open_file_folder: A leadership - - :open_file_folder: A leader - - :notebook: A leader: string1 ← loaded from rougail-test - - :notebook: a follower1: string1 ← loaded from rougail-test - - :notebook: a follower2: string1 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string2 ← loaded from rougail-test - - :notebook: a follower1: string2 ← loaded from rougail-test - - :notebook: a follower2: string2 ← loaded from rougail-test - - :open_file_folder: A leader - - :notebook: A leader: string3 ← loaded from rougail-test - - :notebook: a follower1: string3 ← loaded from rougail-test - - :notebook: a follower2: string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh b/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh deleted file mode 100644 index c1a7f77e..00000000 --- a/tests/results/test_read_write_mandatory_secrets/68_0family_leadership_mode.sh +++ /dev/null @@ -1,17 +0,0 @@ -╭──────── Caption ────────╮ -│ Variable Modified value │ -╰─────────────────────────╯ -Variables: -┗━━ 📂 A leadership - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string1 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string1 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string1 ◀ loaded from rougail-test - ┣━━ 📂 A leader - ┃ ┣━━ 📓 A leader: string2 ◀ loaded from rougail-test - ┃ ┣━━ 📓 a follower1: string2 ◀ loaded from rougail-test - ┃ ┗━━ 📓 a follower2: string2 ◀ loaded from rougail-test - ┗━━ 📂 A leader -  ┣━━ 📓 A leader: string3 ◀ loaded from rougail-test -  ┣━━ 📓 a follower1: string3 ◀ loaded from rougail-test -  ┗━━ 📓 a follower2: string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_remove_version.gitlab.md b/tests/results/test_read_write_secrets/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_remove_version.gitlab.md rename to tests/results/test_read_write_secrets/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_remove_version.md b/tests/results/test_read_write_secrets/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_remove_version.md rename to tests/results/test_read_write_secrets/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory_secrets/00_0no_variable_remove_version.sh b/tests/results/test_read_write_secrets/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory_secrets/00_0no_variable_remove_version.sh rename to tests/results/test_read_write_secrets/04_1jinja_and_hidden.sh diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable10.sh rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.gitlab.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable11.sh rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable_multi.gitlab.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable_multi.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_mandatory/04_5disabled_calculation_variable_multi.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_mandatory/04_5disabled_calculation_variable_multi.sh rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.md b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.md rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.sh b/tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_read_write_mandatory/04_5disabled_calculation_variable2.sh rename to tests/results/test_read_write_secrets/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md index 936caa53..3918de53 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.gitlab.md @@ -5,12 +5,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.md index 3a12c9e1..41f3fc4b 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.md +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.md @@ -6,12 +6,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test +- :notebook: a new variable: string1 ← loaded from rougail-test +- :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.sh index 526482f2..0b70ba77 100644 --- a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_description.sh @@ -3,12 +3,12 @@ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test +┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test +┗━━ 📓 a new variable:  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..9785f727 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,15 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..6b902b98 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,16 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..c9ac8655 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,13 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) +┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..ca2253f8 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,24 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..5d49be50 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,25 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..e0e4b181 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,22 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📓 A variable calculated: + ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) + ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..954bc32f --- /dev/null +++ b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,36 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.md b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..13150224 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.md @@ -0,0 +1,37 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.sh b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b96e0c65 --- /dev/null +++ b/tests/results/test_read_write_secrets/60_6family_subdynamic_inside.sh @@ -0,0 +1,34 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┗━━ string3 ◀ loaded from rougail-test +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃   ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┗━━ 📓 A variable calculated: +   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.gitlab.md b/tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_calculation.gitlab.md rename to tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.gitlab.md diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.md b/tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_calculation.md rename to tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.md diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_calculation.sh b/tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.sh similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_calculation.sh rename to tests/results/test_read_write_secrets_errors/04_1jinja_and_hidden.sh diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md new file mode 100644 index 00000000..d1e79ac3 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ true +] diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md new file mode 100644 index 00000000..d34a45df --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: true diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh new file mode 100644 index 00000000..b234b94b --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive.sh @@ -0,0 +1,5 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📓 a condition: true diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_disabled.gitlab.md rename to tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_disabled.md rename to tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory_secrets/16_2family_redefine_disabled.sh b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory_secrets/16_2family_redefine_disabled.sh rename to tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md new file mode 100644 index 00000000..03ff2ead --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.gitlab.md @@ -0,0 +1,8 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ false +] +- :notebook: a variable: [+ disabled +] diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md new file mode 100644 index 00000000..539623b1 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.md @@ -0,0 +1,9 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: false +- :notebook: a variable: disabled diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh new file mode 100644 index 00000000..e62bd9fc --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_3.sh @@ -0,0 +1,6 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 a condition: false +┗━━ 📓 a variable: disabled diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md new file mode 100644 index 00000000..d1e79ac3 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: a condition: [+ true +] diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md new file mode 100644 index 00000000..d34a45df --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: a condition: true diff --git a/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh new file mode 100644 index 00000000..b234b94b --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/04_5disabled_calculation_variable_transitive_4.sh @@ -0,0 +1,5 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┗━━ 📓 a condition: true diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md index 6f392400..1d6257dd 100644 --- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.gitlab.md @@ -4,11 +4,11 @@ > - [+ Default value +] Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [+ null +] -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [+ null +] -- :notebook: A new variable: [+ null +] -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [+ null +] +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [+ null +] +- :notebook: a new variable: [+ null +] +- :notebook: a new variable: - [+ null +] - [+ null +] diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.md index 9dbd8178..1629ed8a 100644 --- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.md +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.md @@ -5,11 +5,11 @@ > - Default value Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: null -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: null -- :notebook: A new variable: null -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: null +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: null +- :notebook: a new variable: null +- :notebook: a new variable: - null - null diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.sh b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.sh index 608b6add..b6cea500 100644 --- a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_description.sh @@ -2,11 +2,11 @@ │ Variable Default value │ ╰────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: null -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: null -┣━━ 📓 A new variable: null -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: null +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: null +┣━━ 📓 a new variable: null +┗━━ 📓 a new variable:  ┣━━ null  ┗━━ null diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..208ab900 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,14 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ val1 +] +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ val2 +] +- :notebook: A variable calculated: [+ val1 +] diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..cad5d821 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,15 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: val1 +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: val2 +- :notebook: A variable calculated: val1 diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..4e8d6634 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,12 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: val2 +┗━━ 📓 A variable calculated: val1 diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..3233b887 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,17 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [+ val1 +] +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [+ val2 +] +- :notebook: A variable calculated: + - [+ val1 +] diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..e31f6287 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,18 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - val1 +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - val2 +- :notebook: A variable calculated: + - val1 diff --git a/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..d034cc62 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,15 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┗━━ val1 +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┗━━ val2 +┗━━ 📓 A variable calculated: + ┗━━ val1 diff --git a/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..7645b2a7 --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,31 @@ +> [!note] Caption: +> +> - Variable +> - [+ Default value +] + +Variables: +- :notebook: A suffix variable: + - [+ val1 +] + - [+ val2 +] +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [+ null +] + - :notebook: A variable calculated: + - [+ null +] + - [+ null +] diff --git a/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.md b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..437db0ae --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.md @@ -0,0 +1,32 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Default value + +Variables: +- :notebook: A suffix variable: + - val1 + - val2 +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: null + - :notebook: A variable calculated: + - null + - null diff --git a/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.sh b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..7baf0c1a --- /dev/null +++ b/tests/results/test_read_write_secrets_errors/60_6family_subdynamic_inside.sh @@ -0,0 +1,29 @@ +╭─────── Caption ────────╮ +│ Variable Default value │ +╰────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 +┃ ┗━━ val2 +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: null +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ null +┃ ┃  ┗━━ null +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: null +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ null +┃   ┗━━ null +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: null + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ null + ┃  ┗━━ null + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: null +  ┗━━ 📓 A variable calculated: +   ┣━━ null +   ┗━━ null diff --git a/tests/results/test_secrets/04_1jinja_and_hidden.gitlab.md b/tests/results/test_secrets/04_1jinja_and_hidden.gitlab.md new file mode 100644 index 00000000..1da48a8a --- /dev/null +++ b/tests/results/test_secrets/04_1jinja_and_hidden.gitlab.md @@ -0,0 +1,7 @@ +> [!note] Caption: +> +> - [+ Unmodifiable variable +] +> - [+ Default value +] + +Variables: +- :notebook: [+ A first variable +]: [+ true +] diff --git a/tests/results/test_secrets/04_1jinja_and_hidden.md b/tests/results/test_secrets/04_1jinja_and_hidden.md new file mode 100644 index 00000000..f647978c --- /dev/null +++ b/tests/results/test_secrets/04_1jinja_and_hidden.md @@ -0,0 +1,8 @@ +> [!NOTE] +> +> **Caption:** +> - Unmodifiable variable +> - Default value + +Variables: +- :notebook: A first variable: true diff --git a/tests/results/test_secrets/04_1jinja_and_hidden.sh b/tests/results/test_secrets/04_1jinja_and_hidden.sh new file mode 100644 index 00000000..4abab94b --- /dev/null +++ b/tests/results/test_secrets/04_1jinja_and_hidden.sh @@ -0,0 +1,5 @@ +╭────────────── Caption ──────────────╮ +│ Unmodifiable variable Default value │ +╰─────────────────────────────────────╯ +Variables: +┗━━ 📓 A first variable: true diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive.gitlab.md similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.gitlab.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive.gitlab.md diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive.md similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive.md diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.sh b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive.sh similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable10.sh rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive.sh diff --git a/tests/results/test_mandatory_secrets/16_6exists_family.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_6exists_family.gitlab.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.gitlab.md diff --git a/tests/results/test_mandatory_secrets/16_6exists_family.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.md similarity index 100% rename from tests/results/test_mandatory_secrets/16_6exists_family.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.md diff --git a/tests/results/test_mandatory_secrets/16_6exists_family.sh b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.sh similarity index 100% rename from tests/results/test_mandatory_secrets/16_6exists_family.sh rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_2.sh diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.gitlab.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.gitlab.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.md similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.md diff --git a/tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.sh b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.sh similarity index 100% rename from tests/results/test_mandatory_secrets/04_5disabled_calculation_variable.sh rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_3.sh diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.gitlab.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.gitlab.md diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.md b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.md similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.md rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.md diff --git a/tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh b/tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.sh similarity index 100% rename from tests/results/test_read_write_mandatory_secrets/04_5disabled_calculation_variable2.sh rename to tests/results/test_secrets/04_5disabled_calculation_variable_transitive_4.sh diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md index 936caa53..3918de53 100644 --- a/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md +++ b/tests/results/test_secrets/60_5family_dynamic_calc_description.gitlab.md @@ -5,12 +5,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: [- string1 -] ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: [- string1 -] ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: [- string1 -] ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: [- string1 -] ← loaded from rougail-test +- :notebook: a new variable: - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_description.md b/tests/results/test_secrets/60_5family_dynamic_calc_description.md index 3a12c9e1..41f3fc4b 100644 --- a/tests/results/test_secrets/60_5family_dynamic_calc_description.md +++ b/tests/results/test_secrets/60_5family_dynamic_calc_description.md @@ -6,12 +6,12 @@ > - (:hourglass_flowing_sand: Original default value) Variables: -- :open_file_folder: A dynamic famify for val1 - - :notebook: A dynamic variable for val1: string1 ← loaded from rougail-test -- :open_file_folder: A dynamic famify for val2 - - :notebook: A dynamic variable for val2: string1 ← loaded from rougail-test -- :notebook: A new variable: string1 ← loaded from rougail-test -- :notebook: A new variable: +- :open_file_folder: a dynamic famify for val1 + - :notebook: a dynamic variable for val1: string1 ← loaded from rougail-test +- :open_file_folder: a dynamic famify for val2 + - :notebook: a dynamic variable for val2: string1 ← loaded from rougail-test +- :notebook: a new variable: string1 ← loaded from rougail-test +- :notebook: a new variable: - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) - string3 ← loaded from rougail-test diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_description.sh b/tests/results/test_secrets/60_5family_dynamic_calc_description.sh index 526482f2..0b70ba77 100644 --- a/tests/results/test_secrets/60_5family_dynamic_calc_description.sh +++ b/tests/results/test_secrets/60_5family_dynamic_calc_description.sh @@ -3,12 +3,12 @@ │ (⏳ Original default value) │ ╰──────────────────────────────────────╯ Variables: -┣━━ 📂 A dynamic famify for val1 -┃ ┗━━ 📓 A dynamic variable for val1: string1 ◀ loaded from rougail-test -┣━━ 📂 A dynamic famify for val2 -┃ ┗━━ 📓 A dynamic variable for val2: string1 ◀ loaded from rougail-test -┣━━ 📓 A new variable: string1 ◀ loaded from rougail-test -┗━━ 📓 A new variable: +┣━━ 📂 a dynamic famify for val1 +┃ ┗━━ 📓 a dynamic variable for val1: string1 ◀ loaded from rougail-test +┣━━ 📂 a dynamic famify for val2 +┃ ┗━━ 📓 a dynamic variable for val2: string1 ◀ loaded from rougail-test +┣━━ 📓 a new variable: string1 ◀ loaded from rougail-test +┗━━ 📓 a new variable:  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1)  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1)  ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.gitlab.md new file mode 100644 index 00000000..13f4ad32 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.gitlab.md @@ -0,0 +1,18 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: [+ A suffix variable2 +]: [+ val1 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier.md b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.md new file mode 100644 index 00000000..384ecb6f --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.md @@ -0,0 +1,19 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A suffix variable2: val1 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A variable calculated: string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier.sh b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.sh new file mode 100644 index 00000000..5a51c289 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier.sh @@ -0,0 +1,15 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📓 A suffix variable2: val1 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val1) +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test (⏳ val2) +┗━━ 📓 A variable calculated: string1 ◀ loaded from rougail-test (⏳ string1) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md new file mode 100644 index 00000000..894e3e40 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.gitlab.md @@ -0,0 +1,27 @@ +> [!note] Caption: +> +> - Variable +> - [+ Unmodifiable variable +] +> - [+ Default value +] +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: [+ A suffix variable2 +]: [+ val1 +] +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - [- string2 -] ← loaded from rougail-test + - [- string3 -] ← loaded from rougail-test +- :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - [- string3 -] ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.md b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.md new file mode 100644 index 00000000..debb20b2 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.md @@ -0,0 +1,28 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Unmodifiable variable +> - Default value +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :notebook: A suffix variable2: val1 +- :open_file_folder: dynval1 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :notebook: A dynamic variable: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: val2) + - string2 ← loaded from rougail-test + - string3 ← loaded from rougail-test +- :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string2) + - string3 ← loaded from rougail-test (:hourglass_flowing_sand: string3) diff --git a/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.sh b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.sh new file mode 100644 index 00000000..9889a819 --- /dev/null +++ b/tests/results/test_secrets/60_5family_dynamic_calc_identifier_multi.sh @@ -0,0 +1,24 @@ +╭───────────────────── Caption ─────────────────────╮ +│ Variable Default value │ +│ Unmodifiable variable Modified value │ +│ (⏳ Original default value) │ +╰───────────────────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📓 A suffix variable2: val1 +┣━━ 📂 dynval1 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val1) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┣━━ 📂 dynval2 +┃ ┗━━ 📓 A dynamic variable: +┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ val2) +┃  ┣━━ string2 ◀ loaded from rougail-test +┃  ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📓 A variable calculated: + ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┣━━ string2 ◀ loaded from rougail-test (⏳ string2) + ┗━━ string3 ◀ loaded from rougail-test (⏳ string3) diff --git a/tests/results/test_secrets/60_6family_subdynamic_inside.gitlab.md b/tests/results/test_secrets/60_6family_subdynamic_inside.gitlab.md new file mode 100644 index 00000000..954bc32f --- /dev/null +++ b/tests/results/test_secrets/60_6family_subdynamic_inside.gitlab.md @@ -0,0 +1,36 @@ +> [!note] Caption: +> +> - Variable +> - [- Modified value -] +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - [- val1 -] ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - [- val2 -] ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: [- string1 -] ← loaded from rougail-test + - :notebook: A variable calculated: + - [- string1 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string2 -] ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - [- string3 -] ← loaded from rougail-test diff --git a/tests/results/test_secrets/60_6family_subdynamic_inside.md b/tests/results/test_secrets/60_6family_subdynamic_inside.md new file mode 100644 index 00000000..13150224 --- /dev/null +++ b/tests/results/test_secrets/60_6family_subdynamic_inside.md @@ -0,0 +1,37 @@ +> [!NOTE] +> +> **Caption:** +> - Variable +> - Modified value +> - (:hourglass_flowing_sand: Original default value) + +Variables: +- :notebook: A suffix variable: + - val1 ← loaded from rougail-test (:hourglass_flowing_sand: val1) + - val2 ← loaded from rougail-test (:hourglass_flowing_sand: val2) +- :open_file_folder: dynval1 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test +- :open_file_folder: dynval2 + - :open_file_folder: dynval1 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test + - :open_file_folder: dynval2 + - :notebook: A dynamic variable: string1 ← loaded from rougail-test + - :notebook: A variable calculated: + - string1 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string2 ← loaded from rougail-test (:hourglass_flowing_sand: string1) + - string3 ← loaded from rougail-test diff --git a/tests/results/test_secrets/60_6family_subdynamic_inside.sh b/tests/results/test_secrets/60_6family_subdynamic_inside.sh new file mode 100644 index 00000000..b96e0c65 --- /dev/null +++ b/tests/results/test_secrets/60_6family_subdynamic_inside.sh @@ -0,0 +1,34 @@ +╭────────────── Caption ───────────────╮ +│ Variable Modified value │ +│ (⏳ Original default value) │ +╰──────────────────────────────────────╯ +Variables: +┣━━ 📓 A suffix variable: +┃ ┣━━ val1 ◀ loaded from rougail-test (⏳ val1) +┃ ┗━━ val2 ◀ loaded from rougail-test (⏳ val2) +┣━━ 📂 dynval1 +┃ ┣━━ 📂 dynval1 +┃ ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃ ┃ ┗━━ 📓 A variable calculated: +┃ ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃ ┃  ┗━━ string3 ◀ loaded from rougail-test +┃ ┗━━ 📂 dynval2 +┃  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +┃  ┗━━ 📓 A variable calculated: +┃   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +┃   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +┃   ┗━━ string3 ◀ loaded from rougail-test +┗━━ 📂 dynval2 + ┣━━ 📂 dynval1 + ┃ ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test + ┃ ┗━━ 📓 A variable calculated: + ┃  ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) + ┃  ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) + ┃  ┗━━ string3 ◀ loaded from rougail-test + ┗━━ 📂 dynval2 +  ┣━━ 📓 A dynamic variable: string1 ◀ loaded from rougail-test +  ┗━━ 📓 A variable calculated: +   ┣━━ string1 ◀ loaded from rougail-test (⏳ string1) +   ┣━━ string2 ◀ loaded from rougail-test (⏳ string1) +   ┗━━ string3 ◀ loaded from rougail-test diff --git a/tests/test_errors.py b/tests/test_errors.py index e32d2f6e..ab86eda9 100644 --- a/tests/test_errors.py +++ b/tests/test_errors.py @@ -1,6 +1,7 @@ from pathlib import Path from rougail import Rougail from rougail.output_display import RougailOutputDisplay as RougailOutput +from rougail.user_data import mandatories from rougail_tests.utils import get_rougail_config, fake_errors_for_user_data, fake_errors_for_user_data2, fake_dynamic_for_user_data, fake_for_user_data @@ -15,10 +16,14 @@ def test_error_mandatory_hidden(): rougail = Rougail(rougailconfig) config = rougail.run() config.information.set("description_type", "description") + config.property.read_write() + errors = [] + mandatories(config, errors) config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format - no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig).run() + output_file = Path(__file__).parent / 'errors-results' / f'display.{ext}' + no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors).run() assert no_pb == False output_file = Path(__file__).parent / 'errors-results' / f'display.{ext}' if not output_file.is_file(): @@ -38,10 +43,13 @@ def test_error_mandatory_family_hidden(): rougail = Rougail(rougailconfig) config = rougail.run() config.information.set("description_type", "description") + config.property.read_write() + errors = [] + mandatories(config, errors) config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format - no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig).run() + no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors).run() assert no_pb == False output_file = Path(__file__).parent / 'errors2-results' / f'display.{ext}' if not output_file.is_file(): @@ -61,10 +69,13 @@ def test_error_mandatory_family(): rougail = Rougail(rougailconfig) config = rougail.run() config.information.set("description_type", "description") + config.property.read_write() + errors = [] + mandatories(config, errors) config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format - no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig).run() + no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors).run() assert no_pb == False output_file = Path(__file__).parent / 'errors3-results' / f'display.{ext}' if not output_file.is_file(): @@ -84,10 +95,13 @@ def test_error_not_valid_variable(): rougail = Rougail(rougailconfig) config = rougail.run() config.information.set("description_type", "description") + config.property.read_write() + errors = [] + mandatories(config, errors) config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format - no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig).run() + no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors).run() assert no_pb == False output_file = Path(__file__).parent / 'errors4-results' / f'display.{ext}' if not output_file.is_file(): @@ -223,6 +237,9 @@ def test_warnings_not_valid_family_user_data(): config = rougail.run() config.information.set("description_type", "description") errors = rougail.user_data(fake_for_user_data()) + config.property.read_write() + mandatories(config, errors["errors"]) + config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors["errors"], user_data_warnings=errors["warnings"]).run() @@ -246,6 +263,9 @@ def test_error_not_valid_user_data2(): config = rougail.run() config.information.set("description_type", "description") errors = rougail.user_data(fake_errors_for_user_data2(), invalid_user_data_error=True) + config.property.read_write() + mandatories(config, errors["errors"]) + config.property.read_only() for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format no_pb, generated_output = RougailOutput(config, rougailconfig=rougailconfig, user_data_errors=errors["errors"], user_data_warnings=errors["warnings"]).run() diff --git a/tests/test_layers.py b/tests/test_layers.py index 6bac9424..90c1194c 100644 --- a/tests/test_layers.py +++ b/tests/test_layers.py @@ -10,7 +10,7 @@ EXT = {'console': 'sh', 'github': 'md', 'gitlab': 'gitlab.md'} def test_layers(): - layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}} + layer_datas = ['name1', 'name2', 'name3', 'name4'] rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig['step.output'] = 'display' rougailconfig["display.console.max_width"] = 200 @@ -43,7 +43,7 @@ def set_value(config): def test_layers_values_config2(): - layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}} + layer_datas = ['name1', 'name2', 'name3', 'name4'] rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig['step.output'] = 'display' rougailconfig["display.console.max_width"] = 200 @@ -72,7 +72,7 @@ def test_layers_values_config2(): def test_layers_values_metaconfig1(): - layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}} + layer_datas = ['name1', 'name2', 'name3', 'name4'] rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig['step.output'] = 'display' rougailconfig["display.console.max_width"] = 200 @@ -101,7 +101,7 @@ def test_layers_values_metaconfig1(): def test_layers_values_metaconfig2(): - layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}} + layer_datas = ['name1', 'name2', 'name3', 'name4'] rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig['step.output'] = 'display' rougailconfig["display.console.max_width"] = 200 @@ -130,7 +130,8 @@ def test_layers_values_metaconfig2(): def test_layers_values_metaconfig_mix(): - layer_datas = {None: {'source1': ['name1', 'name2']}, 'source1.source2': {'source2': ['name3']}, 'source1.source2.source3': {'source3': ['name4']}} + layer_datas = ['name1', 'name2', 'name3', 'name4'] + rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig = get_rougail_config(Path("tests/layers/"), namespace=False) rougailconfig['step.output'] = 'display' rougailconfig["display.console.max_width"] = 200 diff --git a/tests/test_load.py b/tests/test_load.py index 6d89b9b6..1f51c6c7 100644 --- a/tests/test_load.py +++ b/tests/test_load.py @@ -9,12 +9,20 @@ from rougail_tests.utils import get_structures_list, get_rougail_config, get_val EXT = {'console': 'sh', 'github': 'md', 'gitlab': 'gitlab.md'} -excludes = [] +excludes = [ +] #excludes = [ -# '60_2family_dynamic_jinja_fill_sub_group_2', +# '60_5family_dynamic_calc_identifier', #] +WITH_DONE = False +#WITH_DONE = True -test_ok = get_structures_list(excludes) +HERE = Path(__file__).parent + +if WITH_DONE: + test_ok = get_structures_list(excludes, HERE) +else: + test_ok = get_structures_list(excludes) # test_ok = [Path('../rougail-tests/structures/00_6boolean')] @@ -28,31 +36,33 @@ def test_dir(request): def gen_cases(): - for read_write in [False, True]: - for mandatory in [False, True]: + for namespace in [False, True]: + for read_write in [False, True]: + # for mandatory in [False, True]: for show_secrets in [False, True]: - yield read_write, mandatory, show_secrets + yield namespace, read_write, show_secrets -def _test_structural_files(test_dir, namespace): - rougailconfig = get_rougail_config(test_dir, namespace) - if not rougailconfig: - return - rougailconfig['step.output'] = 'display' - rougailconfig["display.console.max_width"] = 120 - for do_calc in [False, True]: - rougail = Rougail(rougailconfig) - config = rougail.run() - config.information.set("description_type", "description") - if do_calc: - get_values_for_config(config) - for read_write, mandatory, show_secrets in gen_cases(): - if not do_calc and (mandatory or not read_write): +def _test_structural_files(test_dir): + for namespace, read_write, show_secrets in gen_cases(): + rougailconfig = get_rougail_config(test_dir, namespace) + if not rougailconfig: + return + rougailconfig['step.output'] = 'display' + rougailconfig["display.console.max_width"] = 120 + for do_calc in [False, True]: + rougail = Rougail(rougailconfig) + config = rougail.run() + config.information.set("description_type", "description") + if do_calc: + get_values_for_config(config) +# for read_write, show_secrets in gen_cases(): + if not do_calc and not read_write: continue # print(read_write, mandatory, show_secrets, do_calc) for output_format, ext in EXT.items(): rougailconfig['display.output_format'] = output_format - rougailconfig["display.mandatory"] = mandatory +# rougailconfig["display.mandatory"] = mandatory rougailconfig["display.show_secrets"] = show_secrets ################################## dir_name = 'test' @@ -63,8 +73,8 @@ def _test_structural_files(test_dir, namespace): ################################## if read_write: dir_name += '_read_write' - if mandatory: - dir_name += '_mandatory' +# if mandatory: +# dir_name += '_mandatory' if not show_secrets: dir_name += '_secrets' if not do_calc: @@ -84,11 +94,14 @@ def _test_structural_files(test_dir, namespace): with output_file.open() as outfh: attented_output = outfh.read() assert generated_output == attented_output, f'filename {output_file}' + if WITH_DONE: + with (HERE / (test_dir.name + ".DONE")).open("w") as fh: + fh.write('') def test_structural_files_display(test_dir): - _test_structural_files(test_dir, True) - - -def test_structural_files_display_no_namespace(test_dir): - _test_structural_files(test_dir, False) + _test_structural_files(test_dir) +# +# +#def test_structural_files_display_no_namespace(test_dir): +# _test_structural_files(test_dir, False)