(self, transient_fixture)
| 2010 | self._assert_history(u1, ([], [], [])) |
| 2011 | |
| 2012 | def test_backref_pop_transient(self, transient_fixture): |
| 2013 | u1, a1 = transient_fixture(addresses_args={"backref": "user"}) |
| 2014 | u1.addresses.add(a1) |
| 2015 | |
| 2016 | self._assert_history(u1, ([a1], [], [])) |
| 2017 | |
| 2018 | a1.user = None |
| 2019 | |
| 2020 | # removed from added |
| 2021 | self._assert_history(u1, ([], [], [])) |
| 2022 | |
| 2023 | def test_remove_persistent(self, persistent_fixture): |
| 2024 | u1, a1, s = persistent_fixture() |
nothing calls this directly
no test coverage detected