diff options
Diffstat (limited to 'test/ext/associationproxy.py')
| -rw-r--r-- | test/ext/associationproxy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ext/associationproxy.py b/test/ext/associationproxy.py index e095d285e..4935f4b6e 100644 --- a/test/ext/associationproxy.py +++ b/test/ext/associationproxy.py @@ -218,6 +218,9 @@ class CustomDictTest(DictTest): self.assert_(len(p1._children) == 3) self.assert_(len(p1.children) == 3) + p1.children['d'] = 'new d' + assert p1.children['d'] == 'new d' + p1._children = {} self.assert_(len(p1.children) == 0) |
