tests/test_block.py: test append after block
parent
bfcdf0f020
commit
1b206081e6
|
@ -32,3 +32,7 @@ def test_assign_after_block():
|
||||||
'It is an error to assign to a block key after the block.'
|
'It is an error to assign to a block key after the block.'
|
||||||
with pytest.raises(ParseError):
|
with pytest.raises(ParseError):
|
||||||
loads_xbc('a { a = 1 }\na = 1')
|
loads_xbc('a { a = 1 }\na = 1')
|
||||||
|
|
||||||
|
def test_append_after_block():
|
||||||
|
'Modifying keys after a block is legal.'
|
||||||
|
loads_xbc('a\na { b = 1 }\na += 1') == {'a': '1', 'a.b': '1'}
|
||||||
|
|
Loading…
Reference in New Issue