This commit is contained in:
2026-01-18 12:23:01 +01:00
parent ef3d0ed970
commit bb1263edb8
86 changed files with 90289 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from backend.app.services.pricing import price_trend
def test_price_trend_up():
assert price_trend([100, 200]) == "up"
def test_price_trend_stable():
assert price_trend([100, 100]) == "stable"
def test_price_trend_down():
assert price_trend([300, 200]) == "down"