(self)
| 1058 | assert "attr" not in dict_ |
| 1059 | |
| 1060 | def test_off_empty(self): |
| 1061 | attr, state, dict_ = self._fixture(None) |
| 1062 | eq_(attr.get(state, dict_, passive=attributes.PASSIVE_OFF), None) |
| 1063 | assert "attr" not in dict_ |
| 1064 | |
| 1065 | |
| 1066 | class UtilTest(fixtures.ORMTest): |