diff options
-rw-r--r-- | lulua/test_report.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lulua/test_report.py b/lulua/test_report.py index 448d796..751684c 100644 --- a/lulua/test_report.py +++ b/lulua/test_report.py @@ -20,7 +20,7 @@ from decimal import Decimal -from .report import approx, blend, blendn +from .report import approx def test_approx (): assert approx (0) == (Decimal ('0'), '') @@ -37,13 +37,3 @@ def test_approx (): assert approx (10**9) == (Decimal ('1'), 'billion') assert approx (10**12) == (Decimal ('1000'), 'billion') -def test_blend (): - assert blend (0.5, 0, 1) == 0.5 - assert blend (0.5, 0, 2) == 1 - - assert blend (0.1, 0, 1) == 0.1 - assert blend (0.9, 0, 1) == 0.9 - - assert blendn (0.5, (0, ), (1, )) == [0.5] - assert blendn (0.5, (0, ), (0.7, ), (1, )) == [0.7] - |