コード例 #1
0
def test_illegal_array_base_prop_raises():
    try:
        ArrayProperty(StringProperty(index=True))
    except ValueError:
        assert True
    else:
        assert False
コード例 #2
0
ファイル: test_properties.py プロジェクト: benchsci/neomodel
 class IndexArray(StructuredNode):
     ai = ArrayProperty(unique_index=True)
コード例 #3
0
ファイル: test_properties.py プロジェクト: benchsci/neomodel
def test_illegal_array_base_prop_raises():
    with raises(ValueError):
        ArrayProperty(StringProperty(index=True))
コード例 #4
0
ファイル: test_properties.py プロジェクト: benchsci/neomodel
class ArrayProps(StructuredNode):
    uid = StringProperty(unique_index=True)
    untyped_arr = ArrayProperty()
    typed_arr = ArrayProperty(IntegerProperty())