Ejemplo n.º 1
0
 class IndexArray(StructuredNode):
     ai = ArrayProperty(unique_index=True)
Ejemplo n.º 2
0
class ArrayProps(StructuredNode):
    uid = StringProperty(unique_index=True)
    untyped_arr = ArrayProperty()
    typed_arr = ArrayProperty(IntegerProperty())
Ejemplo n.º 3
0
def test_illegal_array_base_prop_raises():
    with raises(ValueError):
        ArrayProperty(StringProperty(index=True))