From 1683b6fd897adc3eacdd322c9c883d10bea33b08 Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Fri, 10 Oct 2025 08:07:57 +0200 Subject: [PATCH] fix: update tests --- pyproject.toml | 3 --- .../rougail/00-base.yml | 22 +++++++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 tests/results/04_5disabled_calculation_boolean/rougail/00-base.yml diff --git a/pyproject.toml b/pyproject.toml index 32ac191..ac07347 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,9 +13,6 @@ license = {file = "LICENSE"} classifiers = [ "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", diff --git a/tests/results/04_5disabled_calculation_boolean/rougail/00-base.yml b/tests/results/04_5disabled_calculation_boolean/rougail/00-base.yml new file mode 100644 index 0000000..6516c90 --- /dev/null +++ b/tests/results/04_5disabled_calculation_boolean/rougail/00-base.yml @@ -0,0 +1,22 @@ +%YAML 1.2 +--- +version: 1.1 + +condition: no # a conditional variable + +variable1: + description: a first variable + disabled: + jinja: |- + {{ _.condition == "yes" }} + return_type: boolean + description: if condition is egal to "yes" + +variable2: + description: a seconde variable + disabled: + jinja: |- + {{ _.condition != "yes" }} + return_type: boolean + description: if condition is not egal to "yes" +...