(t *testing.T, dbPool *pgxpool.Pool)
| 66 | } |
| 67 | |
| 68 | func newDriverWithPlugin(t *testing.T, dbPool *pgxpool.Pool) *TestDriverWithPlugin { |
| 69 | t.Helper() |
| 70 | |
| 71 | return &TestDriverWithPlugin{ |
| 72 | Driver: riverpgxv5.New(dbPool), |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | func (d *TestDriverWithPlugin) PluginInit(archetype *baseservice.Archetype) { |
| 77 | d.initCalled = true |
no test coverage detected
searching dependent graphs…