mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-06-23 23:13:13 +03:00
10 lines
237 B
Python
10 lines
237 B
Python
from wiringfastdepends import sample
|
|
|
|
|
|
def test_apply_coefficient() -> None:
|
|
assert sample.apply_coefficient(100) == 120.0
|
|
|
|
|
|
def test_apply_coefficient_annotated() -> None:
|
|
assert sample.apply_coefficient_annotated(100) == 120.0
|