(self, transient_fixture)
| 1991 | sess.autoflush = True |
| 1992 | |
| 1993 | def test_add_transient(self, transient_fixture): |
| 1994 | u1, a1 = transient_fixture() |
| 1995 | u1.addresses.add(a1) |
| 1996 | |
| 1997 | self._assert_history(u1, ([a1], [], [])) |
| 1998 | |
| 1999 | def test_add_persistent(self, persistent_fixture): |
| 2000 | u1, a1, s = persistent_fixture() |
nothing calls this directly
no test coverage detected