From 328b7857d8e6f6d0c5291125a4e446ddcaf83708 Mon Sep 17 00:00:00 2001 From: mashony <mashoshin.dmitry@gmail.com> Date: Wed, 11 Dec 2024 16:04:33 +0200 Subject: [PATCH] feat: add new min wage constant from 2025-01-01 --- constants/common.yaml | 5 +++++ test/integration/test_api.py | 2 ++ test/integration/test_databridge.py | 2 ++ 3 files changed, 9 insertions(+) diff --git a/constants/common.yaml b/constants/common.yaml index 2196292..b848523 100644 --- a/constants/common.yaml +++ b/constants/common.yaml @@ -10,3 +10,8 @@ minimum_wage: uk_UA: Мінімальна заробітна плата value: 7100.0 currency: UAH + - fromDate: '2025-01-01' + en_US: Minimum wage + uk_UA: Мінімальна заробітна плата + value: 8000.0 + currency: UAH diff --git a/test/integration/test_api.py b/test/integration/test_api.py index c099e0d..fe9e5ba 100644 --- a/test/integration/test_api.py +++ b/test/integration/test_api.py @@ -245,5 +245,7 @@ class TestApi: 'value': 6700.0, 'currency': 'UAH'}, {'en_US': 'Minimum wage', 'fromDate': '2024-01-01', 'uk_UA': 'Мінімальна заробітна плата', 'value': 7100.0, 'currency': 'UAH'}, + {'en_US': 'Minimum wage', 'fromDate': '2025-01-01', 'uk_UA': 'Мінімальна заробітна плата', + 'value': 8000.0, 'currency': 'UAH'}, ] } diff --git a/test/integration/test_databridge.py b/test/integration/test_databridge.py index 7cdcbaf..c5b1af8 100644 --- a/test/integration/test_databridge.py +++ b/test/integration/test_databridge.py @@ -245,5 +245,7 @@ class TestApi: 'value': 6700.0, 'currency': 'UAH'}, {'en_US': 'Minimum wage', 'fromDate': '2024-01-01', 'uk_UA': 'Мінімальна заробітна плата', 'value': 7100.0, 'currency': 'UAH'}, + {'en_US': 'Minimum wage', 'fromDate': '2025-01-01', 'uk_UA': 'Мінімальна заробітна плата', + 'value': 8000.0, 'currency': 'UAH'}, ] } -- GitLab