Code_PPII_FS26/tests/test_pricing.py
Irina Rueegg 091cae3b97 Woche 5
2026-03-26 11:30:40 +01:00

7 lines
158 B
Python

from src.u6_tests.pricing import discount_price
def test_discount_price_reduces_price():
result = discount_price(100.0, 20.0)
assert result == 80.0