コード例 #1
0
def prop_is(type, property, value):
    """Returns true if the specified object property is of the given type;
    false otherwise"""
    return is_(type, prop(property, value))
コード例 #2
0
def test_prop_nocurry_property():
    assert_equal(prop("val")({"val": "foo"}), "foo")
コード例 #3
0
ファイル: resource.py プロジェクト: bamdadd/pyhalboy
 def get_hrefs(self):
     return f.reduce(lambda acc, x:
                     {**acc, x[0]: r.cond([[r.pipe(type, r.equals(dict)), r.prop("href")],
                                           [r.pipe(type, r.equals(list)), r.map(r.prop('href'))]],
                                          x[1])}, r.to_pairs(self.links), {})
コード例 #4
0
def test_prop_curry():
    assert_equal(prop("val")(test_object), "foo")