MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _fixture

Method _fixture

test/base/test_events.py:1273–1287  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1271
1272class RemovalTest(TearDownLocalEventsFixture, fixtures.TestBase):
1273 def _fixture(self):
1274 class TargetEvents(event.Events):
1275 def event_one(self, x, y):
1276 pass
1277
1278 def event_two(self, x):
1279 pass
1280
1281 def event_three(self, x):
1282 pass
1283
1284 class Target:
1285 dispatch = event.dispatcher(TargetEvents)
1286
1287 return Target
1288
1289 def _wrapped_fixture(self):
1290 class TargetEvents(event.Events):

Calls

no outgoing calls

Tested by

no test coverage detected