1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-12 21:47:29 +02:00

mock Prepare to return error

This commit is contained in:
Luigi Kapaj
2014-09-23 17:38:15 -04:00
parent e36ad8d068
commit bdbf874463
3 changed files with 31 additions and 0 deletions

View File

@ -122,6 +122,14 @@ func ExpectRollback() Mock {
return mock.conn
}
// ExpectPrepare expects Query to be prepared
func ExpectPrepare() Mock {
e := &expectedPrepare{}
mock.conn.expectations = append(mock.conn.expectations, e)
mock.conn.active = e
return mock.conn
}
// WillReturnError the expectation will return an error
func (c *conn) WillReturnError(err error) Mock {
c.active.setError(err)