diff options
| author | Jason Kirtland <jek@discorporate.us> | 2007-06-16 22:04:13 +0000 |
|---|---|---|
| committer | Jason Kirtland <jek@discorporate.us> | 2007-06-16 22:04:13 +0000 |
| commit | 6cd584d3031bbb810d2c7f400ae38b941088ded9 (patch) | |
| tree | e4ec73ea79d4fabed09e60dba421b3f1617ee46c /test | |
| parent | 84420a1d0fe09d7a45e878e853aa9f5258561f8b (diff) | |
| download | sqlalchemy-6cd584d3031bbb810d2c7f400ae38b941088ded9.tar.gz | |
- Fixed typo blocking some assoc proxy dict assignments, added test
Diffstat (limited to 'test')
| -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) |
