當前位置: 首頁>>代碼示例>>Python>>正文


Python Leaf.allowed_values方法代碼示例

本文整理匯總了Python中SettingsTree.Leaf.allowed_values方法的典型用法代碼示例。如果您正苦於以下問題:Python Leaf.allowed_values方法的具體用法?Python Leaf.allowed_values怎麽用?Python Leaf.allowed_values使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SettingsTree.Leaf的用法示例。


在下文中一共展示了Leaf.allowed_values方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_validation_mixed_invalid_alwaysfalse_butallowed

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_validation_mixed_invalid_alwaysfalse_butallowed():
    leaf = Leaf()
    x = random.random()
    leaf.validator_function = lambda x, y: False
    leaf.allowed_values = [x]
    leaf.value = x
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例2: test_validation_mixed_invalid_allowedvalue_butwrongtype

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_validation_mixed_invalid_allowedvalue_butwrongtype():
    leaf = Leaf()
    x = random.randrange(100)
    leaf.valid_value_types = float
    leaf.allowed_values = [x]
    leaf.value = x
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:9,代碼來源:test_leaf.py

示例3: test_validation_allowed_values_invalid

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_validation_allowed_values_invalid():
    leaf = Leaf()
    x = [random.random() for i in range(5, 10)]
    leaf.allowed_values = x
    y = x[0]
    while y in x:
        y = random.random()
    leaf.value = y
    assert not leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:11,代碼來源:test_leaf.py

示例4: test_set_allowed_values

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_set_allowed_values():
    leaf = Leaf()
    x = [random.random() for i in range(random.randint(4, 30))]
    leaf.allowed_values = x
    out = leaf.allowed_values
    assert isinstance(out, collections.Iterable)
    assert len(x) == len(out)
    for i, v in enumerate(x):
        assert v == out[i]
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:11,代碼來源:test_leaf.py

示例5: test_validation_allowed_values_valid

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_validation_allowed_values_valid():
    leaf = Leaf()
    x = [random.random() for i in range(5, 10)]
    leaf.allowed_values = x
    leaf.value = x[random.randrange(len(x))]
    assert leaf.is_valid(settings)
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:8,代碼來源:test_leaf.py

示例6: test_set_allowed_values_invalid_noniterable

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_set_allowed_values_invalid_noniterable():
    leaf = Leaf()
    x = 9
    leaf.allowed_values = x
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:6,代碼來源:test_leaf.py

示例7: test_undo_allowed_values

# 需要導入模塊: from SettingsTree import Leaf [as 別名]
# 或者: from SettingsTree.Leaf import allowed_values [as 別名]
def test_undo_allowed_values():
    leaf = Leaf(allowed_values=(3,))
    assert leaf.allowed_values is not None
    x = None
    leaf.allowed_values = x
    assert x == leaf.allowed_values
開發者ID:frejanordsiek,項目名稱:SettingsTree,代碼行數:8,代碼來源:test_leaf.py


注:本文中的SettingsTree.Leaf.allowed_values方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。