(self, autoflush, persistent_fixture)
| 2133 | |
| 2134 | @testing.combinations(True, False, argnames="autoflush") |
| 2135 | def test_persistent_but_readded(self, autoflush, persistent_fixture): |
| 2136 | u1, a1, s = persistent_fixture(autoflush=autoflush) |
| 2137 | u1.addresses.add(a1) |
| 2138 | s.flush() |
| 2139 | |
| 2140 | u1.addresses.add(a1) |
| 2141 | |
| 2142 | self._assert_history( |
| 2143 | u1, ([], [a1], []), compare_passive=([a1], [], []) |
| 2144 | ) |
| 2145 | |
| 2146 | def test_missing_but_removed_noflush(self, persistent_fixture): |
| 2147 | u1, a1, s = persistent_fixture(autoflush=False) |
nothing calls this directly
no test coverage detected