(self, persistent_fixture)
| 2021 | self._assert_history(u1, ([], [], [])) |
| 2022 | |
| 2023 | def test_remove_persistent(self, persistent_fixture): |
| 2024 | u1, a1, s = persistent_fixture() |
| 2025 | u1.addresses.add(a1) |
| 2026 | s.flush() |
| 2027 | s.expire_all() |
| 2028 | |
| 2029 | u1.addresses.remove(a1) |
| 2030 | |
| 2031 | self._assert_history(u1, ([], [], [a1])) |
| 2032 | |
| 2033 | def test_backref_pop_persistent_autoflush_o2m_active_hist( |
| 2034 | self, persistent_fixture |
nothing calls this directly
no test coverage detected