コード例 #1
0
ファイル: test_properties.py プロジェクト: vortec/libtree
def test_get_recursive_properties_no_inheritance(cur, root):
    expected = {
        'type': 'root',
        'boolean': False,
        'integer': 1,
        'dict': {'key': 'value'},
        'list': [{'abc': 2}]
    }
    assert get_recursive_properties(cur, root) == expected
コード例 #2
0
ファイル: test_properties.py プロジェクト: vortec/libtree
def test_get_recursive_properties_simple_inheritance(cur, nd2):
    expected = {
        'title': 'Node 2',
        'type': 'nd2',
        'boolean': True,
        'foo': 'bar',
        'integer': 1,
        'dict': {'key': 'value', 'another key': 'another value'},
        'list': [{'abc': 2}]
    }
    assert get_recursive_properties(cur, nd2) == expected
コード例 #3
0
ファイル: test_properties.py プロジェクト: vortec/libtree
def test_get_recursive_properties_multiple_inheritance(cur, nd2_1_1):
    expected = {
        'title': 'Node 2-1-1',
        'type': 'nd2_1_1',
        'boolean': False,
        'integer': 1,
        'foo': 'bar',
        'dict': {'key': 'yet another value', 'another key': 'another value'},
        'list': [{'def': 4}]
    }
    assert get_recursive_properties(cur, str(nd2_1_1)) == expected