예제 #1
0
def test_juxtapose(funcs, args, expected):
    assert _.juxtapose(*funcs)(*args) == expected
예제 #2
0
def test_juxtapose(funcs, args, expected):
    assert _.juxtapose(*funcs)(*args) == expected
예제 #3
0
파일: logic.py 프로젝트: alecxe/verify
 def op(value, comparable):
     """Return whether any results from evaluating `value` in `comparable`
     predicates return truthy.
     """
     return any(pydash.juxtapose(*comparable)(value))
예제 #4
0
파일: logic.py 프로젝트: alecxe/verify
 def op(value, comparable):
     """Return whether any results from evaluating `value` in `comparable`
     predicates return truthy.
     """
     return any(pydash.juxtapose(*comparable)(value))