(self, persistent_fixture)
| 1997 | self._assert_history(u1, ([a1], [], [])) |
| 1998 | |
| 1999 | def test_add_persistent(self, persistent_fixture): |
| 2000 | u1, a1, s = persistent_fixture() |
| 2001 | u1.addresses.add(a1) |
| 2002 | |
| 2003 | self._assert_history(u1, ([a1], [], [])) |
| 2004 | |
| 2005 | def test_remove_transient(self, transient_fixture): |
| 2006 | u1, a1 = transient_fixture() |
nothing calls this directly
no test coverage detected