MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / test_checkin_event

Method test_checkin_event

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

Source from the content-addressed store, hash-verified

691 eq_(canary, ["checkout", "checkout"])
692
693 def test_checkin_event(self):
694 p, canary = self._checkin_event_fixture()
695
696 c1 = p.connect()
697 eq_(canary, [])
698 c1.close()
699 eq_(canary, ["reset_rollback_ok", "checkin"])
700
701 def test_reset_event(self):
702 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