Exemplo n.º 1
0
def test_invert_remove_via_update():
    r = dotted.update({'hello': {
        'there': 'me',
        'not': 'this'
    }}, '-hello.there', dotted.ANY)
    assert r == {'hello': {'not': 'this'}}
Exemplo n.º 2
0
def test_numeric_update():
    m = dotted.update({}, '07a', 8)
    assert m == {'07a': 8}
Exemplo n.º 3
0
def test_slice_upsert():
    m = dotted.update([], '[:]', ['hello'])
    assert m == ['hello']
Exemplo n.º 4
0
def test_slice_append():
    m = dotted.update(['hello', 'there'], '[+:]', ['bye'])
    assert m == ['hello', 'there', 'bye']
Exemplo n.º 5
0
def test_slice_prepend():
    m = dotted.update(['hello', 'there'], '[:0]', ['bye'])
    assert m == ['bye', 'hello', 'there']
Exemplo n.º 6
0
def test_slice_default():
    m = dotted.update({}, 'stuff[]', ['bye'])
    assert m == {'stuff': ['bye']}
Exemplo n.º 7
0
def test_appender_nested_if():
    m = dotted.update({}, 'hello[+?].name', 'Hello')
    assert m == {'hello': [{'name': 'Hello'}]}

    m = dotted.update(m, 'hello[+?].name', 'Hello')
    assert m == {'hello': [{'name': 'Hello'}]}
Exemplo n.º 8
0
def test_appender_flat_if():
    m = dotted.update({}, 'hello.there[+?]', 9)
    assert m == {'hello': {'there': [9]}}

    m = dotted.update(m, 'hello.there[+?]', 9)
    assert m == {'hello': {'there': [9]}}
Exemplo n.º 9
0
def test_appender_embedded():
    m = dotted.update({'hello': {'there': 7}}, 'hello.list[+]', 9)
    assert m == {'hello': {'there': 7, 'list': [9]}}
Exemplo n.º 10
0
def test_appender_nested_from_non_empty():
    m = dotted.update({'hello': [{'name': 'Hello'}]}, 'hello[+].name', 'Bye')
    assert m == {'hello': [{'name': 'Hello'}, {'name': 'Bye'}]}
Exemplo n.º 11
0
def test_appender_flat_str():
    m = dotted.update('', '[+]', '1')
    assert m == '1'