From 80578dd3fb6bad76980014c6b2dbdacd04b239ea Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 30 Oct 2021 14:15:16 +0200 Subject: tests: Remove test for removed function. Removed in 8315da395a2a99111bf3e9d0ab3846f7ddbf9732. Oops. --- lulua/test_report.py | 12 +----------- 1 file changed, 1 insertion(+), 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] - -- cgit v1.2.3