summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2021-10-30 14:15:16 +0200
committerLars-Dominik Braun <lars@6xq.net>2021-10-30 14:16:01 +0200
commit80578dd3fb6bad76980014c6b2dbdacd04b239ea (patch)
treeaa334be4ac726c79f01375476dd7f791a623ac67
parentad9148bdcbfd73cad8f9b9f1380eaa29da1a1649 (diff)
downloadlulua-80578dd3fb6bad76980014c6b2dbdacd04b239ea.tar.gz
lulua-80578dd3fb6bad76980014c6b2dbdacd04b239ea.tar.bz2
lulua-80578dd3fb6bad76980014c6b2dbdacd04b239ea.zip
tests: Remove test for removed function.
Removed in 8315da395a2a99111bf3e9d0ab3846f7ddbf9732. Oops.
-rw-r--r--lulua/test_report.py12
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]
-