From 148da8ee5531145f3949d289292fb04ac9b79bef Mon Sep 17 00:00:00 2001 From: "christian.lutnik" Date: Tue, 14 Jan 2025 11:22:35 +0100 Subject: [PATCH] fixup! feat: Update test harness (add assertions) #1467 Signed-off-by: christian.lutnik --- specification/assets/gherkin/metadata.feature | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/specification/assets/gherkin/metadata.feature b/specification/assets/gherkin/metadata.feature index c7a13ea8..ad27d179 100644 --- a/specification/assets/gherkin/metadata.feature +++ b/specification/assets/gherkin/metadata.feature @@ -7,10 +7,12 @@ Feature: Metadata Scenario: Returns metadata Given a Boolean-flag with key "metadata-flag" and a default value "true" When the flag was evaluated with details - Then the resolved metadata value "string" with type "String" should be "1.0.2" - And the resolved metadata value "integer" with type "Integer" should be "2" - And the resolved metadata value "double" with type "Double" should be "0.1" - And the resolved metadata value "boolean" with type "Boolean" should be "true" + Then the resolved metadata should contain + | key | metadata_type | value | + | string | String | 1.0.2 | + | integer | Integer | 2 | + | double | Double | 0.1 | + | boolean | Boolean | true | Scenario Outline: Returns no metadata Given a -flag with key "" and a default value ""