added exploration tests

This commit is contained in:
Matthias Bisping 2022-04-13 13:15:05 +02:00
parent b4f279c549
commit 6a7debde14

View File

@ -0,0 +1,6 @@
from funcy import rcompose
def test_rcompose():
f = rcompose(lambda x: x ** 2, str, lambda x: x * 2)
assert f(3) == "99"