(self)
| 1745 | ) |
| 1746 | |
| 1747 | def test_basic(self): |
| 1748 | sess = fixture_session() |
| 1749 | f1 = Foo(data=Point(3, 4)) |
| 1750 | sess.add(f1) |
| 1751 | sess.flush() |
| 1752 | f1.data.x = 5 |
| 1753 | sess.commit() |
| 1754 | |
| 1755 | # we didn't get the change. |
| 1756 | eq_(f1.data.x, 3) |
| 1757 | |
| 1758 | |
| 1759 | class MutableCompositeCustomCoerceTest( |