MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_checkin_event

Method test_checkin_event

test/engine/test_pool.py:691–697  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

689 eq_(canary, ["checkout", "checkout"])
690
691 def test_checkin_event(self):
692 p, canary = self._checkin_event_fixture()
693
694 c1 = p.connect()
695 eq_(canary, [])
696 c1.close()
697 eq_(canary, ["reset_rollback_ok", "checkin"])
698
699 def test_reset_event(self):
700 p, canary = self._reset_event_fixture()

Callers

nothing calls this directly

Calls 4

eq_Function · 0.90
connectMethod · 0.45
closeMethod · 0.45

Tested by

no test coverage detected