I'm trying to mock the bolt driver and I'm having some issues with the DriverPool interface.
It has a non-exported method that takes another non-exported struct as its argument.
type DriverPool interface {
OpenPool() (Conn, error)
reclaim(*boltConn) error
}
If you can point me to the direction you'd like this to go to I can make a PR for it.
Hey there,
I'm trying to mock the bolt driver and I'm having some issues with the
DriverPool
interface. It has a non-exported method that takes another non-exported struct as its argument.If you can point me to the direction you'd like this to go to I can make a PR for it.
Thank you very much in advance :)